This commit is contained in:
2026-07-28 02:57:13 +01:00
parent 737c6c1d20
commit 57dda2589e
14 changed files with 369 additions and 84 deletions
+14
View File
@@ -1,5 +1,19 @@
#include "io/file.h"
#include "pch.h"
#include "vase/shard.h"
#include "vase/vase.h"
int main() {
char *text;
uint32_t len;
int s = read_file("./flake.nix", &text, &len);
if (!s)
return 1;
Vase vase = Vase(text, len);
print_shard(vase.root.ptr);
return 0;
}