What would a little C Joy look like?

Let's use GMP for ints and Boehm GC.
This commit is contained in:
Simon Forman
2022-09-22 17:26:28 -07:00
parent 92338037e7
commit 813c5c0a23
3 changed files with 13 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
COPTS=-I/usr/local/include
joy: joy.c
cc $(COPTS) joy.c -o joy
BIN
View File
Binary file not shown.
+8
View File
@@ -0,0 +1,8 @@
#include <gc.h>
#include <gmp.h>
int main(void)
{
return 0;
}