summaryrefslogtreecommitdiffstats
path: root/contrib/awk/test/rand.awk
blob: 6378f3d3773c93ba70aaa9d9df03df2c90317d77 (plain)
1
2
3
4
5
6
BEGIN {
	srand(2)
	for (i = 0; i < 19; i++) 
		printf "%3d ", (1 + int(100 * rand()))
	print ""
}
OpenPOWER on IntegriCloud