Select Template:
Variable Assignment
set x to 10
Synonyms:
let x = 10, create x as 10Mutation & Math
increase x by 1
Or:
set x to x plus 1, decrease x by 2Conditional Logic
if x is greater than 5:
Also:
if x > 5:, if x is equal to y:Output & Input
display "Value: ", x
Input:
ask "Enter name: "