Skip to content

Instantly share code, notes, and snippets.

@reidev275
Created January 23, 2019 21:30
Show Gist options
  • Save reidev275/20ca48787020f8cf6c5c004f1e46d080 to your computer and use it in GitHub Desktop.
Save reidev275/20ca48787020f8cf6c5c004f1e46d080 to your computer and use it in GitHub Desktop.
turnAround ∷ State → Dsl State
turnAround init =
left init
>>= left
outAndBack ∷ State → Dsl State
outAndBack init =
forward init
>>= forward
>>= turnAround
>>= forward
>>= forward
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment