fork download
  1. a = Just 1
  2.  
  3. b
  4. | a == Just 1 = 2
  5. | otherwise = 4
  6.  
  7. main = putStrLn . show $ b
Success #stdin #stdout 0s 6224KB
stdin
Standard input is empty
stdout
2