Created
July 8, 2013 08:39
-
-
Save demental/5947185 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1.8.7 :001 > string = "Bacon, lettuce and tomato" | |
=> "Bacon, lettuce and tomato" | |
1.8.7 :002 > string[1] | |
=> 97 | |
******************************************************************** | |
2.0.0p0 :001 > string = "Bacon, lettuce and tomato" | |
=> "Bacon, lettuce and tomato" | |
2.0.0p0 :002 > string[1] | |
=> "a" | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment