(root)/
gawk-5.2.2/
test/
subslash.awk
BEGIN {
	i = 2
	a[i] = 5
	a[i] /= 2
	printf "a[%s] = %f\n", i, a[i]
}