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

11
libs/collections/list.h Normal file
View File

@@ -0,0 +1,11 @@
#ifndef LIST_H
#define LIST_H
#include <groundext.h>
#include <groundvm.h>
extern const uint8_t STARTING_ELEMENTS;
GroundValue createListStruct();
#endif