add load primitive and (minimal) stdlib

This commit is contained in:
Lobo 2026-01-15 12:17:43 -03:00
parent 9ef27f90e1
commit d6c89d0e6d
7 changed files with 75 additions and 2 deletions

View file

@ -290,6 +290,8 @@ O list_assoc(In *in, O key, O alist);
O list_reverse(In *in, O list);
O list_next(In *in, O *list);
int read_expr(In *in, Lx *lex, O *result);
V compile(Cm *co, O expr, I toplevel);
V disassemble(Cm *co);
O vm_run(Cm *c);