✓
Passing This code compiles and runs correctly.
Code
// CONTROL for 115_008: the identical nested loop in a `pub tor` in the ENTRY
// file. Isolates module placement as the only difference.
import std/io
pub tor run {}
run = for(0..2)
! each i |> for(0..2)
! each j |> std/io:print.ln("{{ i:d }}{{ j:d }}")
run()
Actual
00
01
10
11
Expected output
00
01
10
11
Flows
subflow ~run click a branch to expand · @labels scroll to their anchor
for (0..2)
flow ~run click a branch to expand · @labels scroll to their anchor
run
Test Configuration
MUST_RUN