Skip to content

Instantly share code, notes, and snippets.

@chuck0523
Created January 4, 2016 13:06
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 chuck0523/bfb87a48f6685c0892d7 to your computer and use it in GitHub Desktop.
Save chuck0523/bfb87a48f6685c0892d7 to your computer and use it in GitHub Desktop.
n = '123'.split('')
puts n
# 1
# 2
# 3
a, b, c = n
puts a # 1
puts b # 2
puts c # 3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment