summary refs log tree commit diff stats
path: root/test/strings.cratera
diff options
context:
space:
mode:
authorSoniEx2 <endermoneymod@gmail.com>2024-06-06 03:09:00 -0300
committerSoniEx2 <endermoneymod@gmail.com>2024-06-06 03:09:00 -0300
commitd865925d050f13e1097721d2b1f3ae352b49c484 (patch)
tree05d1c2bd1435571a1c4ae4064b2d50535cc87692 /test/strings.cratera
parent1f8140c95ced6b7ce291e16c26c80800fa4f1f9d (diff)
Fix long string parsing
Diffstat (limited to 'test/strings.cratera')
-rw-r--r--test/strings.cratera6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/strings.cratera b/test/strings.cratera
new file mode 100644
index 0000000..d2189a5
--- /dev/null
+++ b/test/strings.cratera
@@ -0,0 +1,6 @@
+local longstring = [[
+Test.
+Test.
+]]
+
+assert(longstring == "Test.\nTest.\n", longstring)