✓
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.
Flows
flow ~print.ln click a branch to expand · @labels scroll to their anchor
print.ln (expr: "Hello, {{ name:s }}! The answer is {{ value:d }}.")
Test Configuration
MUST_RUN