fork(1) download
  1. a = Nothing
  2. b = [a, Just "Hi"]
  3. c = [a, Just 'c']
  4.  
  5. main = print b
Success #stdin #stdout 0s 4648KB
stdin
Standard input is empty
stdout
[Nothing,Just "Hi"]