Multi-line data
The ProcScript interpreter only accepts commands on single lines. You cannot split commands over multiple lines.
The exceptions are:
Strings
To define multi-line strings, use triple quotes like in Python, eg:
text = """This is
a multi-line
string
"""
Objects and Arrays
Objects and arrays can be split over multiple lines as long as each line has it’s key and value on a single line, eg:
arr = [
"foo" => "bar",
"baz" => 42
]
obj = {
foo:"bar",
baz:42
}