aboutsummaryrefslogtreecommitdiffstats
path: root/test/gsubind.awk
blob: fce0d81846b58a604b00a3391030074d066b08eb (plain)
1
2
3
4
5
6
7
8
9
BEGIN {
	f = "foo"
	p = @/o/
	gsub(p, "q", f)
	print f
	fun = "gsub"
	@fun(p, "q", f)
	print f
}