Conditionnal Statements
Used where code needs to be executed based on a run-time.
If
Synopsis
(if (<condition>) {
<expression-true>
)Example:
(func (doc (int c))
{
(if (2 == c) {
(c = 1);
})
(c);
})
(test 2)Last updated