This commit is contained in:
2026-05-14 18:16:11 -06:00
parent ff6bddffb3
commit dc785ed8f3
9 changed files with 195 additions and 30 deletions
+8 -2
View File
@@ -1,5 +1,11 @@
#include <stdio.h>
#include "gyehoek.h"
int blah () {
puts ("aaa");
SCM scm_write (SCM x) {
if (SCM_IMP (x)) {
printf ("#<immediate %ld>\n", SCM_UNPACK (x));
} else {
printf ("#<heap object %ld>\n", SCM_UNPACK(x));
}
return SCM_PACK(NULL);
}