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

5 lines
54 B
Text

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