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

org.eolang.motives.errors.noname-attributes.md Maven / Gradle / Ivy

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