StringBuffer:append(string)
Append a string to the end of a StringBuffer. The StringBuffer will automatically be resized as necessary.
Example
sb = StringBuffer.new()
sb:append('string1')
sb:append(';')
sb:append('string2')Append a string to the end of a StringBuffer. The StringBuffer will automatically be resized as necessary.
Example
sb = StringBuffer.new()
sb:append('string1')
sb:append(';')
sb:append('string2')