aboutsummaryrefslogtreecommitdiffstats
path: root/test/ignrcas4.awk
blob: e74eea642a720d88281b1bcedaa337f4cf0c61f4 (plain)
1
2
3
4
5
6
7
BEGIN {
	x = "0"
	print x+0	# trigger NUMCUR
	IGNORECASE = x	# should enable ignorecase, since x is a non-null string
	y = "aBc"
	print (y ~ /abc/)
}