✓
Passing This code compiles and runs correctly.
Code
// Simplest nested if test - no print.ln, just nested if's
~import std/control
const std = @import("std");
~tor start {}
~proc start|zig {
}
// Outer if contains inner if
// Both should transform to Zig if statements
~start() |> if(true)
| then |> if(false)
| then |> _
| else |> _
| else |> _
Flows
flow ~start click a branch to expand · @labels scroll to their anchor
start
Test Configuration
MUST_RUN