summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c5
1 files changed, 5 insertions, 0 deletions
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 <lcq/pit/lexer.h>
#include <lcq/pit/parser.h>
#include <lcq/pit/runtime.h>
+#include <lcq/pit/library.h>
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;