qse/ase/test/awk/lang-004.awk
2007-12-24 02:11:27 +00:00

4 lines
100 B
Awk

# A function and a named variable cannot have the same name.
function a () { }
BEGIN { a = 20; }