10 lines
256 B
C
10 lines
256 B
C
#include <groundext.h>
|
|
#include <groundvm.h>
|
|
|
|
#include "list.h"
|
|
#include "hashmap.h"
|
|
|
|
void ground_init(GroundScope* scope) {
|
|
groundAddValueToScope(scope, "List", createListStruct());
|
|
groundAddValueToScope(scope, "Hashmap", createHashmapStruct());
|
|
} |