All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eolang.motives.aliases.duplicate-aliases.md Maven / Gradle / Ivy

There is a newer version: 0.0.15
Show newest version
# 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