RosettaCodeData/Task/Conditional-structures/Octave/conditional-structures-1.oc...

18 lines
172 B
Plaintext

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