4 lines
97 B
Awk
4 lines
97 B
Awk
# A function and a named variable cannot have the same name.
|
|
function a () { }
|
|
BEGIN { a = 20; }
|