This commit is contained in:
chpego 2024-02-06 17:38:40 +05:30 committed by GitHub
commit 0c66b13e61
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -1017,13 +1017,13 @@ Variables are evaluated in their alphabetical order based on their name. That me
variables:
index: 2
value: '[[[ return variables.index + 2; ]]]'
name: '[[[ return variable.value; ]]]' # would return 4
name: '[[[ return variables.value; ]]]' # would return 4
### This doesn't work
variables:
z_index: 2
value: '[[[ return variables.z_index + 2; ]]]' # This would fail because z comes after v in the alphabet.
name: '[[[ return variable.value; ]]]'
name: '[[[ return variables.value; ]]]'
```
## Installation