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 Tue Mar 31 07:20:29 UTC 2026.