added solstice support to the collections lib

This commit is contained in:
2026-04-12 09:47:27 +10:00
parent f6c59a61d3
commit aa0c71a47b
5 changed files with 48 additions and 11 deletions

View File

@@ -5,6 +5,6 @@
#include "hashmap.h"
void ground_init(GroundScope* scope) {
groundAddValueToScope(scope, "List", createListStruct());
groundAddValueToScope(scope, "Hashmap", createHashmapStruct());
initLists(scope);
initHashmaps(scope);
}