harn-hostlib 0.9.13

Opt-in code-intelligence and deterministic-tool host builtins for the Harn VM
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
const std = @import("std");
const builtin = @import("builtin");

// A `\\` multiline string literal: the exact construct the bundled
// tree-sitter-zig grammar once mis-lexed into a phantom `unexpected \`
// parse-error storm. The corpus pins that this parses CLEANLY.
const query =
    \\SELECT id, name
    \\FROM users
    \\WHERE active = true
;

pub fn run() void {
    _ = std;
    _ = builtin;
    _ = query;
}