Skip to content

Instantly share code, notes, and snippets.

@naohaq
Created February 6, 2018 08:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save naohaq/27be3b9805010760a4761fb36f35edb0 to your computer and use it in GitHub Desktop.
Save naohaq/27be3b9805010760a4761fb36f35edb0 to your computer and use it in GitHub Desktop.
Cyclic definition
module Main where
a :: Integer
a = a + 1
main :: IO ()
main = putStrLn (show a)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment