RosettaCodeData/Task/Exponentiation-operator/AWK/exponentiation-operator-2.awk
2016-12-05 22:15:40 +01:00

2 lines
135 B
Awk

If you want to use arbitrary precision number with (more recent) awk, you have to use -M option :
$ gawk -M '{ printf("%f\n",$1^$2) }'