This doesn't seem at all to be a problem with font size...
alison @ Fri Oct 29, 2010 2:58 pm wrote:
I have tried using the "\total' to escape from normal behaviour
I don't think you understand what Escape characters do... Escape characters allow you to place characters that would normally break the string inside of a string. They do not allow you to place whatever you want in a string. What you told Turing to output is:
code: |
Your current score is: [tab]otal
|
since \t tells the computer you want a tab character. Likewise, \n will give you a new line, \" will give you a quote, etc.
What you want is:
"Your current score is: " + intstr(total)
which tells the computer that you want "Your current score is: " and then to add the variable total, as a string, to the end of that.