Attributes

Values in Nougaro can have attributes, i.e. subvalues that have a name.

They can be set using the classical variable definition syntax:

var variable.attribute = value

They can be accessed using the dot-syntax:

variable.attribute

Note

You can even access any name defined in the context of the value. For instance, variable.print references the print built-in function.

Pro tip

The next time you have a bug, document it. If it is documented, it is therefore not a bug.