4 lines
101 B
Awk
4 lines
101 B
Awk
# make sure that ; + \n at end after function works
|
|
function foo() { print "foo" } ;
|
|
BEGIN { foo() }
|