creating a string out of a string and int

BlitzMax Forums/BlitzMax Beginners Area/creating a string out of a string and int

say I have..

local name:String = "myName"
local age:Int = 25

how would I do something like...

drawtext name,10,10 + age

??
this does not work as it does seem to like playing with int's and strings at the same time

what should I be doing instead guys?

cheers

I think you mean

Drawtext name + age, 10, 10?

thank you sir :)