Skip to content

Instantly share code, notes, and snippets.

@kennyp
Created August 9, 2013 20:44
Show Gist options
  • Save kennyp/6197042 to your computer and use it in GitHub Desktop.
Save kennyp/6197042 to your computer and use it in GitHub Desktop.
class TrueClass
def to_i
1
end
end
class FalseClass
def to_i
0
end
end
true.to_i #=> 1
false.to_i #=> 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment