Define string on multiple lines
BlitzMax Forums/BlitzMax Beginners Area/Define string on multiple lines
| ||
How do you define strings on multiple lines? In C++ I would do it like:
std::string x = "Hello "
"World";
Is there a way I can do a similar effect in BMax? |
| ||
You can use :
Local x:String = "Hello " + ..
"World"
(note the magic little dots which extend the line :-) |
| ||
| Deleted |
| ||
| Thank you very much. |
| ||
Not quite the same but you can also sayLocal x:String = "Hello " x :+ "World" |