this repo has no description
at trunk 14 lines 330 B view raw
1int main() { 2#ifdef STATIC_HEAP 3 char memory[MEMORY_SIZE] = {0}; 4 struct space space = make_space(memory, MEMORY_SIZE); 5#else 6 struct space space = make_space(MEMORY_SIZE); 7#endif 8 init_heap(heap, space); 9 HANDLES(); 10 GC_HANDLE(struct object*, result, scrap_main()); 11 println(result); 12 destroy_space(space); 13 return 0; 14}