Inconsistent Args
Objects with the same @base
should have the same amount
of arguments passed in it.
Incorrect:
# Foo.
[] > foo
bar 42 > x
bar 1 2 3 > y
Correct:
# Foo.
[] > foo
bar 42 > x
bar 1 > y
Published on Mon May 26 13:15:56 UTC 2025.