Skip to content

Instantly share code, notes, and snippets.

@vanakenm
Created January 14, 2015 10:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vanakenm/51e990139b778c6a201d to your computer and use it in GitHub Desktop.
Save vanakenm/51e990139b778c6a201d to your computer and use it in GitHub Desktop.
A case in uby
a = 5
case a
when 1..3
puts "Is smaller or equal to three"
when 4..6
puts "Is smaller or equal to six"
else
puts "Is BIG"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment