org.eolang.motives.aliases.duplicate-aliases.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 Aliases
Object's aliases must not be duplicated.
Incorrect:
```eo
+alias stdin org.eolang.io.stdin
+alias stdout org.eolang.io.stdout
+alias stdout org.eolang.io.stdout
# Print text to stdout.
[] > main
(stdout "Hello, world!").print
```
Correct:
```eo
+alias stdin org.eolang.io.stdin
+alias stdout org.eolang.io.stdout
# Print text to stdout.
[] > main
(stdout "Hello, world!").print
```
© 2015 - 2025 Weber Informatics LLC | Privacy Policy