core of lists done

This commit is contained in:
2026-04-11 16:06:34 +10:00
parent 18ac18bc6d
commit 482f85af62
3 changed files with 397 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
#include <groundext.h>
#include <groundvm.h>
#include "list.h"
void ground_init(GroundScope* scope) {
groundAddValueToScope(scope, "List", createListStruct());
}