diff options
author | SoniEx2 <endermoneymod@gmail.com> | 2024-06-06 03:09:00 -0300 |
---|---|---|
committer | SoniEx2 <endermoneymod@gmail.com> | 2024-06-06 03:09:00 -0300 |
commit | d865925d050f13e1097721d2b1f3ae352b49c484 (patch) | |
tree | 05d1c2bd1435571a1c4ae4064b2d50535cc87692 /test/strings.cratera | |
parent | 1f8140c95ced6b7ce291e16c26c80800fa4f1f9d (diff) |
Fix long string parsing
Diffstat (limited to 'test/strings.cratera')
-rw-r--r-- | test/strings.cratera | 6 |
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) |