RosettaCodeData/Task/Conditional-structures/Pop11/conditional-structures-3.pop11

12 lines
186 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
if condition1 then
;;; Action1
elseif condition2 then
;;; Action1
elseif condition2 then
;;; Action2
elseif condition3 then
;;; Action3
else
;;; Alternative action
endif;