Anonymous formation

Anonymous formations should not access objects that are undefined within the formation.

Incorrect:

# App.
[] > app
  "Hello" > t
  malloc.of
    64
    [m]
      QQ.io.stdout > @
        t

Correct:

# App.
[] > app
  "Hello" > t
  malloc.of
    64
    [m]
      "boom" > x
      QQ.io.stdout > @
        x

Published on Fri Sep 12 07:14:08 UTC 2025.