xref: /freebsd/contrib/one-true-awk/testdir/t.contin (revision 77013d11e6483b970af25e13c9b892075742f7e5)
1{
2for (i = 1; i <= NF; i++) {
3	if ($i ~ /^[0-9]+$/)
4		continue;
5	print $i, " is non-numeric"
6	next
7}
8print $0, "is all numeric"
9}
10