lazy-evaluation.hs 73 B

123456
  1. g a b c
  2. | c > 0 = b
  3. | otherwise = a
  4. main = do
  5. print (g (1/0) 2 3)