ubuntu-buildroot/output/build/host-gawk-5.2.0/test/tailrecurse.awk

16 lines
150 B
Awk
Raw Normal View History

2024-04-01 15:19:46 +00:00
BEGIN {
abc(2)
}
function abc(c, A, B)
{
print "abc(" c ", " length(A) ")"
if (! c--) {
return
}
B[""]
print length(B)
return abc(c, B)
}