(root)/
gawk-5.2.2/
test/
paramdup.awk
BEGIN { foo(0, 1, 2) }

function foo(a, b, c, b, a)
{
	print "a =", a
	print "b =", b
	print "c =", c
}