aboutsummaryrefslogtreecommitdiff
path: root/testdir/tt.14
blob: a3a1b511992b274f63c380cdcfc1ce4cd6338cca (plain)
1
2
3
4
5
6
7
function abs(x) { return (x < 0) ? -x : x }
BEGIN {	n = 1000
	for (i = 1; i < n; i++) x[i] = rand()
	for (i in x)
		for (j in x)
			if (abs(x[i]-x[j]) < .01) break
      }