RosettaCodeData/Task/Exponentiation-operator/Perl-6/exponentiation-operator-2.pl6

3 lines
33 B
Raku
Raw Permalink Normal View History

2013-04-10 22:43:41 -07:00
say pow .75, -5;
say .75 *** -5;