Skip to content

Instantly share code, notes, and snippets.

@qmmdb
Created July 23, 2017 22:59
Show Gist options
  • Save qmmdb/5c0c91cbb49e6f4e1668a62ae5150a30 to your computer and use it in GitHub Desktop.
Save qmmdb/5c0c91cbb49e6f4e1668a62ae5150a30 to your computer and use it in GitHub Desktop.
module T where
import TestingData (hello)
main :: IO ()
main = hello "yep"
module TestingData (hello) where
hello :: String -> IO ()
hello s = print s
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment