about summary refs log tree commit diff
path: root/users/wpcarro/scratch/haskell-programming-from-first-principles/non-strictness.hs
module NonStrictnessScratch where

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