org.eolang.motives.critical.duplicate-names.md Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lints Show documentation
Show all versions of lints Show documentation
Style checkers (linters) for EO language
# Duplicate Names
Object's name must not be duplicated.
Incorrect:
```eo
foo
1 > name
2 > name
```
```eo
[x] > first
second > x
18 > first
```
Correct:
```eo
foo
1 > one
2 > two
```
```eo
[x] > first
second > x
18 > age
```
© 2015 - 2025 Weber Informatics LLC | Privacy Policy