First page Back Continue Last page Overview Graphics
The append operator is useful as well, and shows duck typing in action
a = []
a << 1
a << 'two'
s = ''
s << 'Montclair'
s << ' ' + „#{'university'.capitalize}“
May also be used to append to File and other objects