Hi, this is a really simple question but I can't figure it out. If I want to pass a really long string to a function, it is really inconvenient to keep it all on one line since then I need to scroll horizontally to see it all.
I first tried using the + operator like:
However apparently I can't do that.Code:function ("Long " + "String");
I also tried:
But for some reason the backslash seems to introduce extra characters into the string and causes my function to fail.Code:function ("Long \ String");
I'm sure there has got to be a way to do this.



LinkBack URL
About LinkBacks


