Duplicate names

The names of objects in the same file (even if the names are in different scopes) should be different so that there is no confusion

Incorrect:

[] > foo
  [] > a1
    42 > bar
  [] > a2
    33 > bar

Correct:

[] > foo
  [] > a1
    42 > bar
  [] > a2
    33 > klub

Published on Mon May 26 13:15:56 UTC 2025.