fork download
  1. import System.IO.Unsafe
  2.  
  3. f :: a -> a
  4. f x = unsafePerformIO $ do
  5. print "whatever"
  6.  
  7. main = print $ f 42
Success #stdin #stdout 0s 4700KB
stdin
Standard input is empty
stdout
"whatever"
42