031 println types

✓ Passing This code compiles and runs correctly.

Code

// Test: println with different types

~import "$std/io"

const count: i32 = 42;
const size: u64 = 1000000;
const name: []const u8 = "test";
const ratio: f64 = 3.14159;
const flag: bool = true;

~std.io:print.ln("count: {{ count:d }}")
~std.io:print.ln("size: {{ size:d }}")
~std.io:print.ln("name: {{ name:s }}")
~std.io:print.ln("ratio: {{ ratio:d }}")
~std.io:print.ln("flag: {{ flag }}")
input.kz

Expected Output

count: 42
size: 1000000
name: test
ratio: 3.14159
flag: true

Test Configuration

MUST_RUN