Skip to content

Instantly share code, notes, and snippets.

@mindplace
Created April 5, 2016 17:30
Show Gist options
  • Save mindplace/0016c54fd8310495b2df11d475e08ab4 to your computer and use it in GitHub Desktop.
Save mindplace/0016c54fd8310495b2df11d475e08ab4 to your computer and use it in GitHub Desktop.
class Array
def my_each(&prc)
i = 0
while i < self.count
prc.call(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