From: Simon Forman Date: Fri, 23 Sep 2022 00:26:28 +0000 (-0700) Subject: What would a little C Joy look like? X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=813c5c0a23992c35320e644dec211cde2ba3ce23;p=joypy%2FThun.git What would a little C Joy look like? Let's use GMP for ints and Boehm GC. --- diff --git a/implementations/C/Makefile b/implementations/C/Makefile new file mode 100644 index 0000000..899fe35 --- /dev/null +++ b/implementations/C/Makefile @@ -0,0 +1,5 @@ +COPTS=-I/usr/local/include + +joy: joy.c + cc $(COPTS) joy.c -o joy + diff --git a/implementations/C/joy b/implementations/C/joy new file mode 100755 index 0000000..af5e20f Binary files /dev/null and b/implementations/C/joy differ diff --git a/implementations/C/joy.c b/implementations/C/joy.c new file mode 100644 index 0000000..3ba565f --- /dev/null +++ b/implementations/C/joy.c @@ -0,0 +1,8 @@ +#include +#include + +int main(void) +{ + return 0; +} +