Skip to content

Instantly share code, notes, and snippets.

@asterite
Last active August 29, 2015 14:13
Show Gist options
  • Save asterite/17b91075fa8cf6be3470 to your computer and use it in GitHub Desktop.
Save asterite/17b91075fa8cf6be3470 to your computer and use it in GitHub Desktop.
class Array
def foo
if T.is_a?(Int32.class)
"Int!"
else
"Other!"
end
end
end
puts [1, 2, 3].foo #=> "Int!"
puts ["hey"].foo #=> "Other!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment