Skip to content

Instantly share code, notes, and snippets.

@aburjg
aburjg / heap-lisp.c
Created October 6, 2025 14:17 — forked from swatson555/heap-lisp.c
Heap based scheme machine.
/* Heap based virtual machine described in section 3.4 of Three Implementation Models for Scheme, Dybvig
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <assert.h>
char token[128][32];