added hashmaps and fixed some small issues with lists

This commit is contained in:
2026-04-11 19:47:12 +10:00
parent a1ad1fe139
commit 8a3093c30f
4 changed files with 184 additions and 31 deletions

View File

@@ -2,7 +2,9 @@
#include <groundvm.h>
#include "list.h"
#include "hashmap.h"
void ground_init(GroundScope* scope) {
groundAddValueToScope(scope, "List", createListStruct());
groundAddValueToScope(scope, "Hashmap", createHashmapStruct());
}