✓
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
==============
Test Configuration
MUST_RUN