Skip to content

Instantly share code, notes, and snippets.

@naohaq
Created February 6, 2018 08:13
Show Gist options
  • Select an option

  • Save naohaq/27be3b9805010760a4761fb36f35edb0 to your computer and use it in GitHub Desktop.

Select an option

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