Created
May 16, 2015 04:46
-
-
Save makenowjust/8d52c08579985e047149 to your computer and use it in GitHub Desktop.
A simple Quine program in JavaScript
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
var s = ";\nconsole.log('var s = ' + JSON.stringify(s) + s);\nconsole.log(s);"; | |
s = 'var s = ' + JSON.stringify(s) + s; | |
console.log(s); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment