my ($a, $b, $n) = (4.0, 0.5, 3);
say $a**$b; # prints 2say $a**$n; # prints 64
perl doesn't have explicit data typing. Scalar variables can contain strings or numbers that are integer or real. The exponentiation operator is **. For finer control, see the POSIX module.