Created
January 25, 2019 12:44
-
-
Save reidev275/a47e286f86f9044b39816126196bb574 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
program ∷ State → Dsl State | |
program init = | |
forward init | |
>>= left | |
>>= forward | |
>>= right | |
>>= forward | |
>>= left | |
>>= forward | |
>>= backward | |
initial ∷ State | |
initial = State { x: Ten, y: One, direction: East } | |
main ∷ Effect Unit | |
main = do | |
log $ show initial | |
s ← interpretDsl $ program initial | |
log "Done!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment