view quine.c @ 136:da4f7200665f default tip

buncha shit
author Paper <paper@tflc.us>
date Sat, 07 Mar 2026 18:04:10 -0500
parents c27afe8ead5f
children
line wrap: on
line source

#include <stdio.h>

int main(void)
{
	static const unsigned char q[] = {
#embed __FILE__
		,0
	};

	puts(q);
}