feat: basic tokenizer

This commit is contained in:
Brett Broadhurst 2026-02-26 18:10:18 -07:00
parent 94ccd1999d
commit 662c38b360
Failed to generate hash of commit
2 changed files with 589 additions and 0 deletions

View file

@ -1,4 +1,5 @@
const std = @import("std");
const tokenizer = @import("tokenizer.zig");
pub const Story = struct {
pub const LoadOptions = struct {};
@ -14,3 +15,6 @@ pub const Story = struct {
pub fn deinit(_: *Story) void {}
};
test {
_ = tokenizer;
}