Inconsistent args

Objects with the same @base must have the same number of arguments passed to them.

Incorrect:

# Foo.
[] > foo
  bar 42 > x
  bar 1 2 3 > y

Correct:

# Foo.
[] > foo
  bar 42 > x
  bar 1 > y

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