Blame test/profile10.awk

Packit 575503
BEGIN {			# Comment 0
Packit 575503
	if (1) {	# Comment 1
Packit 575503
		print "ABC"	# Comment2
Packit 575503
	} else {	# Comment 3
Packit 575503
		print "XYZ"	# Comment 4
Packit 575503
	}			# Comment 5
Packit 575503
Packit 575503
	while (c == d) {	# Comment 6
Packit 575503
		print "DEF"	# Comment 7
Packit 575503
	}			# Comment 8
Packit 575503
Packit 575503
	do {			# Comment 9
Packit 575503
		print "GHI"	# Comment 10
Packit 575503
	} while (e == f)	# Comment 11
Packit 575503
Packit 575503
	for (i in data) {	# Comment 12
Packit 575503
		print "JKL"	# Comment 13
Packit 575503
	}			# Comment 14
Packit 575503
Packit 575503
	for (z = 1; z <= 10; z++) {	# Comment 15
Packit 575503
		print "MNO"		# Comment 16
Packit 575503
	}				# Comment 17
Packit 575503
Packit 575503
	switch (q) {	# Comment 18
Packit 575503
	case "a":	# Comment 19
Packit 575503
	case "b":
Packit 575503
		# Comment 20
Packit 575503
		break	# Comment 21
Packit 575503
	default:	# Comment 22
Packit 575503
		break	# Comment 23
Packit 575503
	}		# Comment 24
Packit 575503
Packit 575503
	if (1) {
Packit 575503
		print "foo"
Packit 575503
	}		# Comment 25
Packit 575503
Packit 575503
	if (2) {
Packit 575503
		print "bar"
Packit 575503
	}
Packit 575503
	# Comment 26
Packit 575503
}
Packit 575503
# Comment 27