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

1 line
64 B
Raku

say "$_ = " . eval($_) for qw/5**3**2 (5**3)**2 5**(3**2)/;