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
