FunctionsVariables Functions
$let
Define a variable, that you can access later through $get.
This function is useful to temporarily store variables, like to save the result of a calculation
Usage
$let[variable name;variable value;remain after execution (yes/no , default no) (optional)]You can use $get[varname] or $varname to retrieve the value
!!exec $let[orange;10]
I have so many oranges, in total of $get[orange]!
I have so many oranges, in total of 10!
!!exec $let[orange;10]
I have so many oranges, in total of $orange!
I have so many oranges, in total of 10!
Related Functions
Check out: $get