Combine string and float ?

something like “Value: 10” ?

"Value:" = String
"10" = Int

how ?

var st:string=“value”;
var flt:float=10;

st="Value :"+flt.ToString();    //This is the actual way
st="Value :"+flt;               //even this is accepted!