autocast of numeric values when string are involved
Posted: Mon Dec 24, 2012 7:33 pm
For those who have not noticed one of the latest additions in 5.10b1
Added: autocast of numeric values when string are involved, allowing to concatenate string and numeric in constants
Very usefull and great addition
Zebuddi. 
Added: autocast of numeric values when string are involved, allowing to concatenate string and numeric in constants
Very usefull and great addition
Code: Select all
b=10 : a$="a"
Debug a$+b ; = a 10
#b=100
#b$="cool"
#a$=#b$+#b
Debug #a$ ; = cool100
; but #a$=#b+#b$ doesnt work
