Skip to content

Instantly share code, notes, and snippets.

@nkabardin
Last active August 29, 2015 14:22
Show Gist options
  • Save nkabardin/8e173df02fac514a5a99 to your computer and use it in GitHub Desktop.
Save nkabardin/8e173df02fac514a5a99 to your computer and use it in GitHub Desktop.
irb(main):031:0> def hey(s)
irb(main):032:1> s << "bbc"
irb(main):033:1> end
=> :hey
irb(main):034:0> a = "abc"
=> "abc"
irb(main):035:0> hey(a)
=> "abcbbc"
irb(main):036:0> a
=> "abcbbc"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment