I seem to recall reading somewhere that there was a keyword that allowed a
variable to have data added to it without losing its contents.
a = "Hi " and
b = "There"
myvar = a
myvar = b
the value of myvar after this would be "Hi There".
How do you do accomplish this?
variable to have data added to it without losing its contents.
a = "Hi " and
b = "There"
myvar = a
myvar = b
the value of myvar after this would be "Hi There".
How do you do accomplish this?
Comment