Skip to content

Instantly share code, notes, and snippets.

@Mikoangelo
Created August 7, 2008 13:27
Show Gist options
  • Save Mikoangelo/4398 to your computer and use it in GitHub Desktop.
Save Mikoangelo/4398 to your computer and use it in GitHub Desktop.
>> class Array
>> def each
>> puts "each called"
>> end
>> end
=> nil
>> for foo in [1,2,3]
>> nil
>> end
each called
=> nil
>>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment