Theraze
Active member
You do need to convert it though...
> ash string x = "12"; print(x*3);
Operator '*' applied to string operands ()
Returned: void
> ash string x = "12"; print(x+3);
123
Returned: void