✓
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
tor greet { name: string } -> string
greet -> "Hello, " ++ name ++ "!"
greet (name: "World"): 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