(root)/
gawk-5.2.2/
test/
crlf.awk
BEGIN {
	print \
		"hi there"
	print "hello \
world"
	if ("foo" ~ /fo\
o/)
		print "matches"
	else
		print "does not match!"
}