Adding strings without + added.

This commit is contained in:
Sriram Sundarraj 2015-04-23 01:48:18 +05:30
parent 2ad26dd44a
commit d20eb1fb94

View File

@ -101,6 +101,8 @@ False or True #=> True
# Strings can be added too! But try not to do this.
"Hello " + "world!" # => "Hello world!"
# Strings can be added without using '+'
"Hello " "world!" # => "Hello world!"
# A string can be treated like a list of characters
"This is a string"[0] # => 'T'