Created
November 7, 2019 00:10
-
-
Save cosinekitty/10a0b1e2c0c5d7b57c1952fc4d5b9eb5 to your computer and use it in GitHub Desktop.
Not quite a quine
This file contains 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
#include <stdio.h> | |
int main() | |
{ | |
printf("#include <stdio.h>\n"); | |
printf("int main()\n"); | |
printf("{\n"); | |
printf(" return 0;\n"); | |
printf("}\n"); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment