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

org.eolang.motives.critical.duplicate-names.md Maven / Gradle / Ivy

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