4.4BSD/usr/src/contrib/gawk-2.15.2/test/rand.awk

BEGIN {
	srand()
	for (i = 0; i < 19; i++) 
		printf "%3d ", (1 + int(100 * rand()))
	print ""
}