Skip to content

Instantly share code, notes, and snippets.

@jaydonnell
Created December 23, 2009 19:12
Show Gist options
  • Save jaydonnell/262719 to your computer and use it in GitHub Desktop.
Save jaydonnell/262719 to your computer and use it in GitHub Desktop.
irb(main):011:0> a = "abcd"
=> "abcd"
irb(main):012:0> a[1,1] = a[2,1]
=> "c"
irb(main):013:0> a
=> "accd"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment