qse/ase/cmd/awk/lang-004.awk
2008-03-21 03:49:53 +00:00

4 lines
100 B
Awk

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