Created
January 13, 2009 19:45
-
-
Save quirkey/46590 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
| def i_can_delete_your_time(hash) | |
| hash.delete(:time) | |
| end | |
| h = {:time => 'i need this'} | |
| h #=> {:time => 'i need this'} | |
| i_can_delete_your_time(h) | |
| h #=> {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment