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