aboutsummaryrefslogtreecommitdiff
path: root/src/main.zig
blob: b8ee34f6edcd3a3cc4df112dab9c71a7e9fda80d (plain) (blame)
1
2
3
4
5
6
7
const std = @import("std");
const lex = @import("js_lexer.zig");

pub fn main() anyerror!void {
    std.log.info("All your codebase are belong to us. {s}", .{lex.Keywords.get("hey")});

}