001 hello world

✓ Passing This code compiles and runs correctly.

Code

// ============================================================================
// VERIFIED REGRESSION TEST - DO NOT MODIFY WITHOUT DISCUSSION
// ============================================================================
// Test: Pure Zig code in a .kz file
// ============================================================================
const std = @import("std");

pub fn main() void {
    std.debug.print("Hello World\n", .{});
}
input.kz

Expected Output

Hello World

Test Configuration

MUST_RUN