Skip to content

ad0/robozzle-hs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

robozzle-hs

A quick Haskell implementation of the famous RoboZZle puzzle game

Fetching a level

mkdir puzzles
python3 tools/level_fetcher.py <puzzleid>

RoboZZle textual language

PROG ::= FUN
       | FUN PROG

FUN ::= 'F'int ':' '\n' INSTRS

INSTRS ::= <empty>
         | INSTR '\n' INSTRS

INSTR ::= ACTION
        | ACTION 'if' CONDITION

ACTION ::= 'move'
         | 'left'
         | 'right'
         | 'paint' COLOR
         | 'call' 'F'int

CONDITION ::= COLOR

COLOR ::= 'blue'
        | 'green'
        | 'red'

About

A small Haskell implementation of the famous RoboZZle puzzle game

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published