aboutsummaryrefslogtreecommitdiffstats
path: root/test/crlf.awk
diff options
context:
space:
mode:
Diffstat (limited to 'test/crlf.awk')
-rw-r--r--test/crlf.awk11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/crlf.awk b/test/crlf.awk
new file mode 100644
index 00000000..79be9eb6
--- /dev/null
+++ b/test/crlf.awk
@@ -0,0 +1,11 @@
+BEGIN {
+ print \
+ "hi there"
+ print "hello \
+world"
+ if ("foo" ~ /fo\
+o/)
+ print "matches"
+ else
+ print "does not match!"
+}