Skip to content

Instantly share code, notes, and snippets.

@paf31
Created February 20, 2015 21:11
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save paf31/22f2513e0f11c80d79a0 to your computer and use it in GitHub Desktop.
Save paf31/22f2513e0f11c80d79a0 to your computer and use it in GitHub Desktop.
PureScript Quine
module Main where
main = Debug.Trace.trace ("module Main where\n\n" ++ code ++ "\n where code = \"\"\"" ++ code ++ "\"\"\"")
where code = """main = Debug.Trace.trace ("module Main where\n\n" ++ code ++ "\n where code = \"\"\"" ++ code ++ "\"\"\"")"""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment