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