Files
ground/libs/collections/collections.c

10 lines
256 B
C
Raw Normal View History

2026-04-11 16:06:34 +10:00
#include <groundext.h>
#include <groundvm.h>
#include "list.h"
#include "hashmap.h"
2026-04-11 16:06:34 +10:00
void ground_init(GroundScope* scope) {
groundAddValueToScope(scope, "List", createListStruct());
groundAddValueToScope(scope, "Hashmap", createHashmapStruct());
2026-04-11 16:06:34 +10:00
}