030 println basic

✓ 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 }}.")
input.kz

Expected Output

Hello, World! The answer is 42.

Test Configuration

MUST_RUN