summaryrefslogtreecommitdiff
path: root/test/gensub2.awk
blob: 53554daef68edb022595339f70bb8837a792c16e (plain)
1
2
3
4
5
BEGIN {
	print gensub("x","y",2,"xx")
	print gensub("x","y","2","xx")
	print gensub("x","y","a","xx")
}