べき乗の計算


 **で計算できます。
use strict;
use warnings;

print 2 ** 10, "\n"; # 1024
print 2 ** (-1), "\n"; # 0.5

関連項目

算術演算子
exp関数