Mercurial > codedump
view quine.c @ 134:c27afe8ead5f
*: add stupid C23 quine
| author | Paper <paper@tflc.us> |
|---|---|
| date | Sat, 24 Jan 2026 15:09:51 -0500 |
| parents | |
| children |
line wrap: on
line source
#include <stdio.h> int main(void) { static const unsigned char q[] = { #embed __FILE__ ,0 }; puts(q); }
