060 single line source blocks

✓ Passing This code compiles and runs correctly.

Code

input.kz

Actual

All source blocks parsed correctly

Flows

flow ~define click a branch to expand · @labels scroll to their anchor
define (with_semicolons, source: const x = 42; return x;)
flow ~define click a branch to expand · @labels scroll to their anchor
define (with_nested_braces, source: if (x) { return 1; } else { return 2; })
flow ~define click a branch to expand · @labels scroll to their anchor
define (with_string_braces, source: print("Hello {world}");)
flow ~define click a branch to expand · @labels scroll to their anchor
define (with_bitwise_or, source: FLAG_A | FLAG_B)
flow ~define click a branch to expand · @labels scroll to their anchor
define (with_chained_or, source: a | b | c | d)
flow ~define click a branch to expand · @labels scroll to their anchor
define (complex, source: if (flags & (A | B)) { return x | y; })

Test Configuration

MUST_RUN