Multiline arrays, better debugging

This commit is contained in:
Elnu 2023-05-20 13:19:51 -07:00
parent 3794a1d607
commit 5442a8fc87
3 changed files with 21 additions and 29 deletions

View file

@ -8,6 +8,13 @@ multiple lines"
'this is a single quote string'
'this also has escaped \'quotes\''
this is cool # comment
[ "this", "is", "an", "array" ]
any empty array []
[
"this", # test
"is",
"an",
"array"
]
["this","is","an","array"]
huh