Skip to content

Instantly share code, notes, and snippets.

@vladimir-vg
Created March 6, 2011 09:32
Show Gist options
  • Save vladimir-vg/857166 to your computer and use it in GitHub Desktop.
Save vladimir-vg/857166 to your computer and use it in GitHub Desktop.
strange case-statement
x = 16
puts case x.class
when String.class
"string"
when Fixnum.class
"fixnum"
else
"other"
end
# => string
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment