3 In Ruby, operators such as <code>+</code>, are defined as methods on the class.
4 Literals[rdoc-ref:syntax/literals.rdoc] define their methods within the lower
5 level, C language. String class, for example.
7 Ruby objects can define or overload their own implementation for most operators.
13 self.concat(str).concat("another string")