Skip to content

Instantly share code, notes, and snippets.

@andrewmcodes
Created November 22, 2020 05:02
Show Gist options
  • Save andrewmcodes/2e4ba1d60016e065155f0509d3814234 to your computer and use it in GitHub Desktop.
Save andrewmcodes/2e4ba1d60016e065155f0509d3814234 to your computer and use it in GitHub Desktop.
Blursed Ruby Shovels
πŸ”₯ = []
#=> []
πŸ”₯ << "digging" << "deeper" << "holes!" << "πŸ’Ž"
#=> ["digging", "deeper", "holes!", "πŸ’Ž"]
πŸ”₯.join(" ")
#=> "digging deeper holes! πŸ’Ž"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment