RosettaCodeData/Task/Conditional-structures/Maple/conditional-structures-1.maple
2014-04-02 16:56:35 +00:00

5 lines
54 B
Text

if x > 0 then
res := x;
else
res := -x;
end if;