Files
gyehoek-hs/runtime/gyehoek.c
T
2026-05-15 15:40:40 -06:00

12 lines
236 B
C

#include <stdio.h>
#include "gyehoek.h"
SCM scm_write (SCM x) {
if (SCM_IMP (x)) {
printf ("#<immediate %ld>\n", SCM_UNPACK (x) >> 2);
} else {
printf ("#<heap object %ld>\n", SCM_UNPACK(x));
}
return SCM_PACK(NULL);
}