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

2 lines
119 B
Awk

And if you want to use locales for decimal separator, you have tu use -N option :
$ gawk -N '{ printf("%f\n",$1^$2) }'