continuing onto a new line

How can I have one line of code extend onto another line. for example if I had
rect(100000000000000000000000000000000000000000000000000000000000000000, 100000000000000000000000, 40000000, 400000000)
I don’t actually have this and I know thats a stupid example but see how its too long to fit on one line so it goes to the next. Is that allowed because even though that seems that a simple question to me i can’t find it anywhere online. Thanks for the help and sorry for the beginner question.

Codea ignores spaces and line breaks in most cases. What this means is that all three of the examples below will work:

rect(blah, blah, I'm, lazy)
rect(blah, blah,
       I'm, lazy)
rect(blah,
       blah,
       I'm,
       lazy)

@JakAttak ok thanks a lot!

One caveat is that on some complex calculations, a split may cause a syntax error. Be sure to only split at operators (+, -, *, /, etc.) and commas and not at parentheses.