if-then-else
Description
Syntax
if [condition] then
[expression]
elif [condition] then
[expression]
else
[expression]
endExample
Example with elif
Last updated
Was this helpful?
if [condition] then
[expression]
elif [condition] then
[expression]
else
[expression]
endLast updated
Was this helpful?
Was this helpful?
p is Person
if p.loves_danger then high_risk else low_risk endholiday is Holiday
if holiday.weather = sunshine then
'beach'
elif holiday.weather = rain then
'museum'
elif holiday.budget > 1000 then
'restaurant'
else
'home'
end