Created
October 2, 2015 07:26
-
-
Save nathanmpark/7013d3697240f389c7d1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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