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