aboutsummaryrefslogtreecommitdiffstats
path: root/test/printfchar.awk
blob: 9e703c31f7d78b1c7087691825fa84351248d90a (plain)
1
2
3
4
5
6
7
BEGIN {
	x[65]
	for (i in x) {
		# i should be a string
		printf "%c\n", i	# should print 1st char of string
	}
}