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

22 lines
301 B
Awk
Raw Normal View History

2024-04-01 15:19:46 +00:00
#
# Test program from:
#
# Date: Tue, 21 Feb 95 16:09:29 EST
# From: emory!blackhawk.com!aaron (Aaron Sosnick)
#
BEGIN {
foo[1]=1;
foo[2]=2;
bug1(foo);
}
function bug1(i) {
for (i in foo) {
bug2(i);
delete foo[i];
print i,1,bot[1];
}
}
function bug2(arg) {
bot[arg]=arg;
}