RosettaCodeData/Task/Exponentiation-order/Seed7/exponentiation-order.seed7
2023-07-01 13:44:08 -04:00

8 lines
196 B
Text

$ include "seed7_05.s7i";
const proc: main is func
begin
writeln("5**3**2 = " <& 5**3**2);
writeln("(5**3)**2 = " <& (5**3)**2);
writeln("5**(3**2) = " <& 5**(3**2));
end func;