Last active
August 29, 2015 14:25
-
-
Save nkaretnikov/7ab0a48c9dc8eeecd4c1 to your computer and use it in GitHub Desktop.
Finally
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
-- f is a loop | |
main = do | |
f foo | |
bar | |
-- | |
baz = do | |
foo -- called every time | |
g bar -- called only once, when f returns | |
main = | |
f baz | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment