feb74b3091
I completed most of the exercises for this enlightening chapter in ghci.
6 lines
99 B
Haskell
6 lines
99 B
Haskell
module NonStrictnessScratch where
|
|
|
|
x = undefined
|
|
y = "blah"
|
|
main = do
|
|
print $ snd (x, x `seq` y)
|