✓
Passing This code compiles and runs correctly.
Code
// Depth 5 test: Maximum stress test (10+1+2+3+4+5 = 25)
import std/io
tor add-one { value: i32 } -> i32
add-one -> value + 1
tor add-two { value: i32 } -> i32
add-two -> value + 2
tor add-three { value: i32 } -> i32
add-three -> value + 3
tor add-four { value: i32 } -> i32
add-four -> value + 4
tor add-five { value: i32 } -> i32
add-five -> value + 5
add-one(value: 10): a |> add-two(value: a): b |> add-three(value: b): c |> add-four(value: c): d |> add-five(value: d): e |> std/io:print.ln("{{e:d}}")
Actual
25
Flows
flow ~add-one click a branch to expand · @labels scroll to their anchor
add-one (value: 10)
Test Configuration
MUST_RUN