fork download
  1. module Main where
  2.  
  3. main = print $ g [1]
  4.  
  5. g xs = if null xs then 1
  6. else 3
  7.  
Success #stdin #stdout 0s 5724KB
stdin
Standard input is empty
stdout
3