001 simple flow

✓ Passing This code compiles and runs correctly.

Code

// Test 003: Simple flow execution
// This should compile, run, and output "Flow executed"
const std = @import("std");

~event hello {}

~proc hello {
    std.debug.print("Flow executed\n", .{});
}

// Top-level flow - should execute
~hello()
input.kz

Expected Output

Flow executed

Test Configuration

MUST_RUN