Skip to content

Instantly share code, notes, and snippets.

@makenowjust
Created May 16, 2015 04:46
Show Gist options
  • Save makenowjust/8d52c08579985e047149 to your computer and use it in GitHub Desktop.
Save makenowjust/8d52c08579985e047149 to your computer and use it in GitHub Desktop.
A simple Quine program in JavaScript
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