Skip to content

Instantly share code, notes, and snippets.

/wtf.rb Secret

Created May 13, 2016 11:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/093e7dc87ea18937120fcef1e98653bf to your computer and use it in GitHub Desktop.
Save anonymous/093e7dc87ea18937120fcef1e98653bf to your computer and use it in GitHub Desktop.
aliases = ['one', 'two']
aliases.concat(aliases.map {|e| e << "s"})
puts aliases
output:
ones
twos
ones
twos
aliases = ['one', 'two']
aliases.concat(aliases.clone.map {|e| e << "s"})
puts aliases
output:
ones
twos
ones
twos
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment