Skip to content

Instantly share code, notes, and snippets.

@usualoma
Created March 17, 2010 20:17
Show Gist options
  • Save usualoma/335677 to your computer and use it in GitHub Desktop.
Save usualoma/335677 to your computer and use it in GitHub Desktop.
class Object
def in(*args)
args.include?(self)
end
end
if 1.in 1, 2, 3
puts('hoge')
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment