Last active
August 29, 2015 14:10
-
-
Save weidagang/803e1f99c2cdf70286df to your computer and use it in GitHub Desktop.
Lazy Evaluation
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
Prelude> let ones = 1 : ones | |
Prelude> take 3 ones | |
[1,1,1] | |
Prelude> let lessThan x y = y < x | |
Prelude> takeWhile (lessThan 5) [1..] | |
[1,2,3,4] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment