We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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"