xref: /freebsd/contrib/one-true-awk/testdir/t.re3 (revision e9a994639b2af232f994ba2ad23ca45a17718d2b)
1{	r1 = $1
2	r2 = $1 ":"
3}
4
5length(r1) && $0 ~ r1	{ print $0 " matches " r1 }
6length(r1) && $0 ~ r2	{ print $0 " matches " r2 }
7