
org.eolang.motives.errors.noname-attributes.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
# Noname Attributes
Each object's attribute must have a name.
Incorrect:
```eo
[] > foo
first
second
```
```eo
[args] > main
(stdout "Hello!").print
```
Correct:
```eo
[] > foo
first > hi
second > hey
```
```eo
[args] > main
(stdout "Hello!").print > out
```
© 2015 - 2025 Weber Informatics LLC | Privacy Policy