Created
January 20, 2014 20:31
-
-
Save zachaysan/8528535 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
setting = Hash.new("Some default string") | |
setting[0] = "some string" | |
setting[1] = "some other string" | |
postLoginAction = 0 | |
puts setting[postLoginAction] | |
postLoginAction = 1 | |
puts setting[postLoginAction] | |
postLoginAction = 5 | |
puts setting[postLoginAction] | |
# OUTPUT: | |
# some string | |
# some other string | |
# Some default string |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment