RosettaCodeData/Task/Conditional-structures/Maple/conditional-structures-1.maple

6 lines
54 B
Text
Raw Permalink Normal View History

2014-04-02 16:56:35 +00:00
if x > 0 then
res := x;
else
res := -x;
end if;