xref: /freebsd/contrib/one-true-awk/testdir/t.re3 (revision d9a42747950146bf03cda7f6e25d219253f8a57a)
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