(root)/
gawk-5.2.2/
test/
gsubind.awk
BEGIN {
	f = "foo"
	p = @/o/
	gsub(p, "q", f)
	print f
	fun = "gsub"
	@fun(p, "q", f)
	print f
}