✓
Passing This code compiles and runs correctly.
Code
// Test: println.blk with Source block
~import std/io
const total: i32 = 100;
const max: i32 = 42;
const name: []const u8 = "Results";
~std/io:print.blk {
=== {{ name:s }} ===
Total: {{ total:d }}
Max: {{ max:d }}
==============
}
Actual
=== Results ===
Total: 100
Max: 42
==============
Expected output
=== Results ===
Total: 100
Max: 42
==============
Flows
flow ~print.blk click a branch to expand · @labels scroll to their anchor
print.blk (source: === {{ name:s }} ===
Total: {{ total:d }}
Max: {{ max:d }}
==============)
Test Configuration
MUST_RUN