✓
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 }}
==============
}
Expected Output
=== Results ===
Total: 100
Max: 42
==============
Test Configuration
MUST_RUN