xref: /freebsd/contrib/one-true-awk/testdir/p.48b (revision e0c4386e7e71d93b0edc0c8fa156263fc4a8b0b6)
1BEGIN	{ k = 3; n = 10 }
2{	if (n <= 0) exit
3	if (rand() <= k/n) { print; k-- }
4	n--
5}
6