How do you type both words and equations in display text?
I simply want my equation to show "$ 50" or something like that, but when I do not know how to enter that into the equation without it giving an error. (The 50 is an integer showing points) So the equation looks like "$" + game.points
How would you type this?
How would you type this?
Best Answer
-
IsabelleK Posts: 2,807
Here is a little example: "This is your score "..game.score
In "..." put a text you want to show up (for example "$"), and after dots put your attribute.
In your case it should look like this: "$"..game.points
Answers