qse/regress/awk/lang-001.awk

9 lines
163 B
Awk
Raw Permalink Normal View History

# cannot use function name as a parameter name
# unless QSE_AWK_STRICTNAMING is off
function f(f) { print f; }
2009-08-07 02:27:14 +00:00
/*
* the begin block
*/
BEGIN { f("hello"); }