Skip to content

Instantly share code, notes, and snippets.

@gregeng
Created October 11, 2013 15:30
Show Gist options
  • Save gregeng/6936756 to your computer and use it in GitHub Desktop.
Save gregeng/6936756 to your computer and use it in GitHub Desktop.
my_each
class Array
def my_each
i = 0
while i < self.length
yield(self[i])
i+=1
end
self
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment