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