✓
Passing This code compiles and runs correctly.
Code
// Test: Basic println with interpolation
~import std/io
const value: i32 = 42;
const name: []const u8 = "World";
~std/io:print.ln("Hello, {{ name:s }}! The answer is {{ value:d }}.")
Actual
Hello, World! The answer is 42.
Expected output
Hello, World! The answer is 42.
Test Configuration
MUST_RUN