summaryrefslogtreecommitdiff
path: root/testsuite/tests/driver/linkwhole/MyCode.hs
blob: fbf6a6301205d5cdfbc2545c354096babe973f94 (plain)
1
2
3
4
5
6
module MyCode
  ( myFunction
  ) where

myFunction :: Int -> IO ()
myFunction i = putStrLn $ "Adding to 20: " ++ show (i + 20)