Conditional
Definition
if <condition> {
[statement_1]
} [else if <condition> {
[statement_2]
} ...][else {
[statement_3]
}]Examples
if 1 == 1 {
print "1 is in fact 1"
} else {
print "Your universe is borked"
}Scoping
Last updated
Was this helpful?