RosettaCodeData/Task/Exponentiation-order/Perl/exponentiation-order.pl

2 lines
64 B
Perl
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
say "$_ = " . eval($_) for qw/5**3**2 (5**3)**2 5**(3**2)/;