Skip to content

Commit

Permalink
Add mention of assignment operators feature to readme
Browse files Browse the repository at this point in the history
  • Loading branch information
James-Livesey authored Aug 17, 2024
1 parent 8dabf2f commit 88042ee
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ Examples of Voxel programs can be found in the [`examples`](examples) and [`test
* [**Expressions**](docs/en/voxel/expressions.md) that follow a defined operator precedence
* **Short-circuit evaluation** of logical operators using `&&` and `||` (evaluation of subsequent operands is aborted if result's value is guaranteed to be `true` or `false`)
* **Eager evaluation** of logical operators using `&&&` and `|||` (all operands are evaluated — this produces simpler bytecode but may perform unnecessary computations at runtime)
* **Assignment operators** that allow variables, list items and properties to be updated based on their previous value
* [**Lists**](docs/en/voxel/lists.md) and their common operations (such as access through index accessors and `push` and `pop` methods)
* [**Objects**](docs/en/voxel/objects.md)
* **Object-oriented programming** features including classes and prototype-based multiple inheritance
Expand Down

0 comments on commit 88042ee

Please sign in to comment.