Files
ground/libs/collections/collections.c
2026-04-11 16:06:34 +10:00

8 lines
167 B
C

#include <groundext.h>
#include <groundvm.h>
#include "list.h"
void ground_init(GroundScope* scope) {
groundAddValueToScope(scope, "List", createListStruct());
}