Last active
August 29, 2015 14:08
-
-
Save chomado/357af01ab2b05ea94a23 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
| import Debug.Trace | |
| fib :: Num a => [a] | |
| fib = 0:1:(trace ("fib [" ++ show fib ++ "] + tail fib [" ++ show (tail fib) ++ "]") | |
| (zipWith (+) fib (tail fib))) | |
| main = do | |
| traceIO $ show $ take 10 fib |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
(これはコンパイルは通るけど実行したら止まらなくなります)