Files
qse/qse/regress/awk/lang-023.awk
hyung-hwan c2668bbe26 changed the way to handle @words.
switched global, local, reset, abort to @global, @local, @reset, @abort to avoid collision with existing awk programs
2012-11-20 14:44:43 +00:00

8 lines
53 B
Awk

BEGIN {
@local a;
a = 21;
print a > 20? 1 2;
}