Files
qse/qse/regress/awk/lang-001.awk

5 lines
134 B
Awk

# cannot use function name as a parameter name
# unless QSE_AWK_STRICTNAMING is off
function f(f) { print f; }
BEGIN { f("hello"); }