DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

Snippets has posted 5883 posts at DZone. View Full User Profile

Get All Local Variables

01.28.2007
| 2544 views |
  • submit to reddit
        
>> local_variables
# => ["_"]  

>> a = "Kevin"
# => "Kevin"  

>> local_variables
# => ["_", "a"]