Skip to content

Instantly share code, notes, and snippets.

@nathanmpark
Created October 2, 2015 07:26
Show Gist options
  • Save nathanmpark/7013d3697240f389c7d1 to your computer and use it in GitHub Desktop.
Save nathanmpark/7013d3697240f389c7d1 to your computer and use it in GitHub Desktop.
# Arrays are useful for storing different types of data
diverse_array = [1,2,"abc",[9,9,"zzz"]]
# Hashes are useful for lookup data
lookup_hash = {
ssn => 1234,
dob => "December 25th, 2000",
acct_num => 9999
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment