xref: /freebsd/contrib/one-true-awk/testdir/t.beginexit (revision 5bb3134a8c21cb87b30e135ef168483f0333dabb)
1BEGIN {
2	while (getline && n++ < 10)
3		print
4	exit
5}
6{ print }
7