Created
June 2, 2016 06:24
-
-
Save anonymous/1c26dcd1cd74acd4c6d810a28f660422 to your computer and use it in GitHub Desktop.
the description for this gist
This file contains 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
val program2: (Position => Free[Instruction, Unit]) = { | |
s: Position => | |
for { | |
p1 <- forward(s, 10) | |
p2 <- right(p1, Degree(90)) | |
p3 <- forward(p2, 10) | |
p4 <- backward(p3, 20)//Here the computation stops, because result will be None | |
_ <- showPosition(p4) | |
} yield () | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment