Add lots of utilties, initial builtins

This commit is contained in:
2022-10-27 16:51:21 -04:00
parent 07a486cd16
commit d81d8c5156
11 changed files with 603 additions and 10 deletions

View File

@@ -6,7 +6,6 @@
static struct nl_object *nl_object_alloc();
static void nl_cell_delete(struct nl_cell *cell);
struct nl_object *nl_cell_create(struct nl_object *car, struct nl_object *cdr)
{
@@ -70,4 +69,3 @@ void nl_object_delete(struct nl_object *obj) {
}
free(obj);
}