Archived
2
0
This commit is contained in:
Emil 2023-08-02 04:40:19 -06:00
commit 47dd8e3a9e
3 changed files with 5 additions and 0 deletions

1
README Normal file
View File

@ -0,0 +1 @@
I don't think this one counts.

3
quine.c Normal file
View File

@ -0,0 +1,3 @@
#include <stdio.h>
#include "text.h"
int main (void) { puts(TEXT); }

1
text.h Normal file
View File

@ -0,0 +1 @@
#define TEXT "#include <stdio.h>\n#include \"text.h\"\nint main (void) { puts(TEXT); }"