002 multiple flows

✓ Passing This code compiles and runs correctly.

Code

// ============================================================================
// VERIFIED REGRESSION TEST - DO NOT MODIFY WITHOUT DISCUSSION
// ============================================================================
// Test 004: Multiple flows should all execute in order
const std = @import("std");

~event first {}

~event second {}

~proc first {
    std.debug.print("First\n", .{});
}

~proc second {
    std.debug.print("Second\n", .{});
}

// Both flows should execute
~first()
~second()
input.kz

Expected Output

First
Second

Test Configuration

MUST_RUN