aboutsummaryrefslogtreecommitdiffstats
path: root/test/crlf.awk
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2015-02-26 20:48:56 +0200
committerArnold D. Robbins <arnold@skeeve.com>2015-02-26 20:48:56 +0200
commit9322ab27e20be82722b2db73f74447f2b35c6502 (patch)
tree41150ce4a24f6bd8843b900dbe17674eea1f5246 /test/crlf.awk
parent64c5b3da1b7ebe73fcfb4edd9450382ccf1159fb (diff)
parent33c16c16e6d33118075b196e16b33b342ee462d3 (diff)
downloadegawk-9322ab27e20be82722b2db73f74447f2b35c6502.tar.gz
egawk-9322ab27e20be82722b2db73f74447f2b35c6502.tar.bz2
egawk-9322ab27e20be82722b2db73f74447f2b35c6502.zip
Merge branch 'master' into non-fatal-io-2
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!"
+}