Files
Pasha Stetsenko 69c13568e6 docs: Added documentation for basic expressions in Jenny (#2256)
This PR describes variables and operators in the YarnSpinner language.
2023-01-08 10:53:38 +01:00

299 B

Functions

TODO

An expression may also contain function calls, which are indicated by the name of the function, followed by its arguments in parentheses. The parentheses are required, even when there are no arguments:

<<set $roll_2d6 = dice(6) + dice(6)>>
<<set $random = random()>>