RosettaCodeData/Task/Exponentiation-operator/AWK/exponentiation-operator-3.awk
2023-07-01 13:44:08 -04: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) }'