From 2dfa52e475fbc5614f92cfbc42d5b25fc5b8eff2 Mon Sep 17 00:00:00 2001 From: LLLL Colonq Date: Fri, 19 Dec 2025 21:01:18 -0500 Subject: Add support for keywords and variadic arguments --- src/main.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/main.c') diff --git a/src/main.c b/src/main.c index 2ea5ef8..bc697de 100644 --- a/src/main.c +++ b/src/main.c @@ -5,9 +5,14 @@ #include #include #include +#include int main(int argc, char **argv) { pit_runtime *rt = pit_runtime_new(); + pit_install_library_essential(rt); + pit_install_library_io(rt); + pit_install_library_plist(rt); + pit_install_library_bytestring(rt); if (argc < 2) { /* run repl */ char buf[1024] = {0}; i64 len = 0; -- cgit v1.2.3