creating a string out of a string and int

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

smokingkipper(Posted 2005) [#1]
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


Dreamora(Posted 2005) [#2]
I think you mean

Drawtext name + age, 10, 10?


smokingkipper(Posted 2005) [#3]
thank you sir :)