aboutsummaryrefslogtreecommitdiff
path: root/tests/quote/buildfile
diff options
context:
space:
mode:
Diffstat (limited to 'tests/quote/buildfile')
-rw-r--r--tests/quote/buildfile18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/quote/buildfile b/tests/quote/buildfile
new file mode 100644
index 0000000..931bc36
--- /dev/null
+++ b/tests/quote/buildfile
@@ -0,0 +1,18 @@
+print "foo bar"
+print "foo
+bar"
+
+foo = "fo o"
+bar = " bar "
+
+print "$foo"
+print "$bar"
+print "$foo $bar"
+print "$foo$bar"
+
+print "[ $foo ]"
+print "[ $bar ]"
+print "[ $foo $bar ]"
+print "[ $foo/$bar ]"
+
+./: