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

6 lines
99 B
Awk

#
# a global variable can not have the same name as a function name
#
@global a;
function a () { }