Files
qse/qse/regress/awk/lang-024.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

20 lines
161 B
Awk

BEGIN {
@local a;
a = 21;
print a > 20? 1 : 2;
c = a++ ++b;
print a;
print b;
print c;
print 99++c;
x="he" "ll" %% "o";
x%%=" world"
print x;
}