RosettaCodeData/Task/Conditional-structures/Octave/conditional-structures-1.octave
2023-07-01 13:44:08 -04:00

17 lines
172 B
Text

if (condition)
% body
endif
if (condition)
% body
else
% otherwise body
endif
if (condition1)
% body
elseif (condition2)
% body 2
else
% otherwise body
endif