#how to make so instead of adding an intregar it adds to next digit so 4+3 is 43
4 messages · Page 1 of 1 (latest)
I would convert 4 and 3 to string, concat them and parse int the result from string concat. I believe there better way to do it but I don't know
@bold oriole @indigo cargo @half spade
Multiply by 10, Add X
4 then 3 becomes (4 * 10) + 3 which becomes 40 + 3 which is 43