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 Oct 10 22:54:10 UTC 2025.