✓
Passing This code compiles and runs correctly.
Code
// Test 002: Event and host proc declaration without flow
// This should compile but not produce any output
// Prefer subflow implementations for ordinary Koru logic; this test only
// verifies the Zig host implementation boundary.
const std = @import("std");
~event hello {}
~proc hello {
std.debug.print("Event executed\n", .{});
}
Test Configuration
MUST_RUN