Quote:
|
Originally Posted by Stefan
Well it depends.
You can do
say2("Hello!\nThis is the next line.");
or you can do
say2("Hello!
This is the next line.");
The second way is easier readable if you have long text I guess.
|
Actually stefan, should scripted line breaks really be read as string line breaks when you can just do:
say2("Hello!\n"
+ "This is the next line.");
??