Skip to content

Variables

ccgauche edited this page Sep 21, 2020 · 1 revision

Variables

Variables in Cythan are processed at compilation! A variable in cythan as a name [a-z0-9_]

The name should represent what the variable does.

The value of a variable is written using parenthesis and any literal expression can be used.

a_variable = (0 10 23)
b_variable = (0 a_variable ~+1)

All variables in Cythan are global and can't be erased. But you can overwritte them.

Clone this wiki locally