ID:267773
 
Is it possible to have a long line of code be cut down into 2 lines?

Like when I have a

var/r=input() usually there's a ton of options that are hard to manage...
Jon Snow wrote:
Is it possible to have a long line of code be cut down into 2 lines?

Like when I have a

var/r=input() usually there's a ton of options that are hard to manage...

You mean using \ ?

<code>var/r = input("This is a ", "really", \ "long text string")</code>
In response to Foomer
ya there we go, just came back to byond again (college has been bogging me down) and I forgot how to do that :)

Thanks a ton foomer!