Skip to content

Instantly share code, notes, and snippets.

@strukturedkaos
Created August 27, 2014 18:54
Show Gist options
  • Save strukturedkaos/fca88e1b20627d545eef to your computer and use it in GitHub Desktop.
Save strukturedkaos/fca88e1b20627d545eef to your computer and use it in GitHub Desktop.
|= compound assignment example
irb(main):013:0> a = []
=> []
irb(main):014:0> a |= [1]
=> [1]
irb(main):015:0> a |= [1]
=> [1]
irb(main):016:0> a
=> [1]
irb(main):017:0> a |= [2]
=> [1, 2]
irb(main):018:0> a
=> [1, 2]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment