Skip to content

Instantly share code, notes, and snippets.

@munro
Created May 9, 2014 02:40
Show Gist options
  • Save munro/4097bc64c51f9b846f86 to your computer and use it in GitHub Desktop.
Save munro/4097bc64c51f9b846f86 to your computer and use it in GitHub Desktop.
module Main
import meow
foo : Float
foo = 0.123
hello : Float -- can switch to Float/Int to use the correct one
hello = foo
main : IO ()
main = do
putStrLn "Hello world"
putStrLn $ show hello
module meow
foo : Int
foo = 123
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment