Created
February 20, 2015 21:11
-
-
Save paf31/22f2513e0f11c80d79a0 to your computer and use it in GitHub Desktop.
PureScript Quine
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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