summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorLLLL Colonq <llll@colonq>2026-06-29 20:29:36 -0400
committerLLLL Colonq <llll@colonq>2026-06-29 20:29:36 -0400
commit8909986b89eaac74bb4cd8dc7019f96e4f650470 (patch)
treede2865d7d7fffefddb38c7d36e556f67e305f6c1 /src/main.c
parent3324b894adfc06d88c65ea7cb70d98a446f733d5 (diff)
Initial annotations
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/main.c b/src/main.c
index f29245b..76da802 100644
--- a/src/main.c
+++ b/src/main.c
@@ -8,15 +8,15 @@
#include <lcq/pit/library.h>
int main(int argc, char **argv) {
- // i64 sz = 256 * 1024 * 1024;
- i64 sz = 32 * 1024;
+ i64 sz = 256 * 1024 * 1024;
+ // i64 sz = 32 * 1024;
u8 *buf = malloc((size_t) sz);
pit_runtime *rt = pit_runtime_new(buf, sz);
pit_install_library_essential(rt);
- // pit_install_library_io(rt);
- // pit_install_library_plist(rt);
- // pit_install_library_alist(rt);
- // pit_install_library_bytestring(rt);
+ pit_install_library_io(rt);
+ pit_install_library_plist(rt);
+ pit_install_library_alist(rt);
+ pit_install_library_bytestring(rt);
if (argc < 2) {
pit_repl(rt);
} else {