RosettaCodeData/Task/Zero-to-the-zero-power/AWK/zero-to-the-zero-power.awk
2015-02-20 09:02:09 -05:00

5 lines
84 B
Awk

# syntax: GAWK -f ZERO_TO_THE_ZERO_POWER.AWK
BEGIN {
print(0 ^ 0)
exit(0)
}