Skip to content

Instantly share code, notes, and snippets.

@demental
Created July 8, 2013 08:39
Show Gist options
  • Save demental/5947185 to your computer and use it in GitHub Desktop.
Save demental/5947185 to your computer and use it in GitHub Desktop.
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