[ create a new paste ] login | about

Link: http://codepad.org/eDUT9MZ7    [ raw code | output | fork ]

johannes - Haskell, pasted on Aug 3:
1
2
3
4
5
6
module Main where

fn x = "lazy"
numbers = [1..]             -- a list of integers 1 to ∞

main = print (fn numbers)   -- prints "lazy"


Output:
1
"lazy"


Create a new paste based on this one


Comments: