Codebase list libmawk / c18583c0-bfa6-44ff-88f7-5aa9a2739ad8/main src / example_apps / 15_call / test.awk
c18583c0-bfa6-44ff-88f7-5aa9a2739ad8/main

Tree @c18583c0-bfa6-44ff-88f7-5aa9a2739ad8/main (Download .tar.gz)

test.awk @c18583c0-bfa6-44ff-88f7-5aa9a2739ad8/mainraw · history · blame

1
2
3
4
5
6
7
8
9
function foo(a, b, c)
{
	print "script: foo(" a "," b "," c ")"
	return a+b
}

BEGIN { print "script: BEGIN" }
      { print "script: input: \"" $0 "\"" }
END   { print "script: END" }