✗
Failing This test is currently failing.
Failed: output
Failure Output
🎯 Compiler coordination: Passes: 20 (flow-based: elaborate, analysis, emission) Code
// Test: `|template(once)|zig` proc variant — template pass renders body via
// Liquid, then strips the `template` tag, leaving `|zig` for normal
// emission. This test uses no template syntax in the body, so the
// rendered output is identical to the input — proves the pipeline runs
// (template tag consumed) without changing the program.
~import std/io
const std = @import("std");
~pub tor greet { who: string }
~proc greet|template(once)|zig {
std.debug.print("Hello, ", .{});
std.debug.print("{s}!\n", .{who});
}
~greet(who: "world")
Expected output
Hello, world!
Flows
flow ~greet click a branch to expand · @labels scroll to their anchor
greet (who: "world")
Test Configuration
MUST_RUN