Files
cground/libs/collections/collections.c

10 lines
173 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) {
initLists(scope);
initHashmaps(scope);
2026-04-11 16:06:34 +10:00
}