016 interpreter conditionals

✓ Passing This code compiles and runs correctly.

Code

input.kz

Actual


╔══════════════════════════════════════════════════════════════╗
║     INTERPRETER CONDITIONALS TEST (ASPIRATIONAL)             ║
╚══════════════════════════════════════════════════════════════╝

Test 1: Parse ~if and inspect AST
  Parsed 1 items!
  Item type: flow
  Flow invocation: if
  Args: 1
    true = true
  Continuations: 2
    | true |>
      node: invocation
    | false |>
      node: invocation
  ✓ TEST 1 COMPLETE

Test 2: Dataflow with conditional branching
  Parsed successfully!
  Dispatched: branch=high
  Matched: | high |>
  ✓ TEST 2 PASSED

Test 3: Same flow, different input (low path)
  Dispatched: branch=low
  Matched: | low |>
  ✓ TEST 3 PASSED

╔══════════════════════════════════════════════════════════════╗
║              CONDITIONAL TESTS COMPLETE                      ║
╚══════════════════════════════════════════════════════════════╝

Test Configuration

MUST_RUN