5 lines
84 B
Awk
5 lines
84 B
Awk
# syntax: GAWK -f ZERO_TO_THE_ZERO_POWER.AWK
|
|
BEGIN {
|
|
print(0 ^ 0)
|
|
exit(0)
|
|
}
|