Blame test/crlf.awk

Packit 575503
BEGIN {
Packit 575503
	print \
Packit 575503
		"hi there"
Packit 575503
	print "hello \
Packit 575503
world"
Packit 575503
	if ("foo" ~ /fo\
Packit 575503
o/)
Packit 575503
		print "matches"
Packit 575503
	else
Packit 575503
		print "does not match!"
Packit 575503
}