View Single Post
  #7  
Old 10-28-2005, 04:51 AM
jake13jake jake13jake is offline
Former Classic Staff
jake13jake's Avatar
Join Date: Dec 2002
Location: Northwest Vermont
Posts: 1,452
jake13jake will become famous soon enough
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.");
??
Reply With Quote