1 2 3 4 5 6 7 8 9
module Main where {-# NOINLINE wiz #-} wiz :: Int -> Int wiz x = x + 10 main = do print (wiz 5) return ()