✓
Passing This code compiles and runs correctly.
Code
// Template engine: `{{ arg }}` substitution in a |template| proc body.
// Baseline — confirms per-call templates route through the Liquid engine and
// interpolate invocation args. Anchors the cluster.
~import std/io
~pub tor show { n: usize }
~proc show|template|zig {
@import("std").debug.print("n={{ n }}\n", .{});
}
~show(n: 42)
Actual
n=42
Expected output
n=42
Flows
flow ~show click a branch to expand · @labels scroll to their anchor
show (n: 42)
Test Configuration
MUST_RUN