xref: /illumos-gate/usr/src/test/util-tests/tests/awk/gnu/fldterm.awk (revision 3f8c0768c028803de6022c542bbd9e9e6f08289f)
1BEGIN {
2	# choose a field separator that is numeric, so we can test whether
3	# force_number properly handles unterminated numeric field strings
4	FS = "3"
5}
6
7{
8	print $1+0
9	print $1
10}
11