Redundant object

If a named object is used only once, it is considered “redundant” and should be inlined.

Incorrect:

# Foo.
[] > foo
  52 > spb
  spb.plus 2

Correct:

# Foo.
[] > foo
  52.plus 2

Published on Tue Mar 31 07:20:30 UTC 2026.