Kaynağa Gözat

Initial

master
Emil 9 ay önce
işleme
47dd8e3a9e
3 değiştirilmiş dosya ile 5 ekleme ve 0 silme
  1. +1
    -0
      README
  2. +3
    -0
      quine.c
  3. +1
    -0
      text.h

+ 1
- 0
README Dosyayı Görüntüle

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

+ 3
- 0
quine.c Dosyayı Görüntüle

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

+ 1
- 0
text.h Dosyayı Görüntüle

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