Skip to content

Library considerations

iso9660 edited this page Dec 2, 2012 · 1 revision

Text It is necessary to be careful initiating Text variables.

Text t = " uuu" + 1; The result is the addition of 1 to the string pointer: "uuu"

Instead do:<br> Text t; t = t + " uuu" + 1; Now the result is " uuu1"

Clone this wiki locally