✓
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");
~tor hello {}
~proc hello|zig {
std.debug.print("Flow executed\n", .{});
}
// Top-level flow - should execute
~hello()Actual
Flow executed
Expected output
Flow executedFlows
flow ~hello click a branch to expand · @labels scroll to their anchor
hello
Test Configuration
MUST_RUN