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

7 lines
99 B
Haskell
Raw Normal View History

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