✓
Passing This code compiles and runs correctly.
Code
// Test: Pure subflow implementation (no proc needed)
// From the README example - this is idiomatic Koru
// This is the default authoring model for ordinary event behavior.
~import std/io
~event greet { name: []const u8 }
| greeting []const u8
~greet => greeting "Hello, " ++ name ++ "!"
~greet (name: "World")
| greeting msg |> std/io:print.ln(msg)
Actual
Hello, World!
Expected output
Hello, World!
Flows
flow ~greet click a branch to expand · @labels scroll to their anchor
greet (name: "World")
Test Configuration
MUST_RUN