Skip to content

Instantly share code, notes, and snippets.

@TrevMcKendrick
Created September 26, 2013 23:14
Show Gist options
  • Save TrevMcKendrick/6721924 to your computer and use it in GitHub Desktop.
Save TrevMcKendrick/6721924 to your computer and use it in GitHub Desktop.
def my_each(array)
i = 0
while i < array.length do
yield(array[i])
i += 1
end
end
my_each(["boy",7,true,"awesome_sauce","YES"]) { |x| puts x}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment