Codebase list libmawk / upstream/1.0.1 src / libmawk / regression / acall.awk
upstream/1.0.1

Tree @upstream/1.0.1 (Download .tar.gz)

acall.awk @upstream/1.0.1raw · history · blame

BEGIN {
	ARG[1] = 3
	ARG[2] = 9
	ARG[3] = "haha"
	c = acall("f1", "ARG")
	print c
}

function f1(a, b, s    ,tmp)
{
	tmp = s "=" a*b
	return tmp
}