Codebase list libmawk / e6ceb860-1bcc-4cc8-8ccb-412e0c97ee18/main src / example_apps / 15_call / test.awk
e6ceb860-1bcc-4cc8-8ccb-412e0c97ee18/main

Tree @e6ceb860-1bcc-4cc8-8ccb-412e0c97ee18/main (Download .tar.gz)

test.awk @e6ceb860-1bcc-4cc8-8ccb-412e0c97ee18/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" }