xref: /freebsd/contrib/one-true-awk/testdir/t.max (revision 2d1d418e1e7bc8325bb052185c17c81a674d0c4e)
1length > max	{ max = length; x = $0}
2END { print max, x }
3