summaryrefslogtreecommitdiffstats
path: root/contrib/awk/test/sort1.awk
blob: 3800c40eeb6482afe4cc9252b33afc985f296fbf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
BEGIN{
  a[1] = "barz";
  a[2] = "blattt";
  a[3] = "Zebra";
  a[4] = 1234;

  testit1(a)

  delete a

  a[1] = "barz";
  a[2] = "blattt";
  a[3] = "Zebra";
  a[4] = 1234;

  n = asort(a, b);

  print "N = ", n;

  for(i=1; i <= n; i++)
    print i, a[i], b[i];
}

function testit1(a,	count, j)
{
	print "start testit"
	count = asort(a)
	for (j = 1; j <= count; j++)
		print j, a[j]
	print "end testit"
}
OpenPOWER on IntegriCloud