Skip to content

Instantly share code, notes, and snippets.

@takai
Created June 15, 2011 22:50
Show Gist options
  • Save takai/1028320 to your computer and use it in GitHub Desktop.
Save takai/1028320 to your computer and use it in GitHub Desktop.
class Array
def odd
select {|f| f % 2 == 0}
end
end
p [].to_a.odd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment