What would a little C Joy look like?
Let's use GMP for ints and Boehm GC.
This commit is contained in:
parent
92338037e7
commit
813c5c0a23
|
|
@ -0,0 +1,5 @@
|
|||
COPTS=-I/usr/local/include
|
||||
|
||||
joy: joy.c
|
||||
cc $(COPTS) joy.c -o joy
|
||||
|
||||
Binary file not shown.
|
|
@ -0,0 +1,8 @@
|
|||
#include <gc.h>
|
||||
#include <gmp.h>
|
||||
|
||||
int main(void)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue