From 88042ee3825a39cb7a134108dd1c11cc44a21764 Mon Sep 17 00:00:00 2001 From: James Livesey <42580341+James-Livesey@users.noreply.github.com> Date: Sat, 17 Aug 2024 21:15:25 +0100 Subject: [PATCH] Add mention of assignment operators feature to readme --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 290b948..2374785 100644 --- a/README.md +++ b/README.md @@ -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