1997-10-14 18:17:11 +00:00

7 lines
98 B
Awk

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