tvl-depot/users/wpcarro/scratch/haskell-programming-from-first-principles/non-strictness.hs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
99 B
Haskell
Raw Normal View History

module NonStrictnessScratch where
x = undefined
y = "blah"
main = do
print $ snd (x, x `seq` y)