Last active
January 10, 2018 01:48
-
-
Save gbpereira/4abcd7a6c5f2db1757ba to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a = 1 | |
case a | |
when 1 | |
puts 'a = 1' | |
when 2 | |
puts 'a = 2' | |
else | |
puts '![1, 2]' | |
end | |
scale = 8 | |
case scale | |
when 0..5 then puts '0..5' | |
when 6..10 then puts '6..10' | |
else puts 'out of range' | |
end | |
lang = :pt_br | |
case lang | |
when :pt_br then puts 'Português do Brasil' | |
when :en then puts 'Inglês' | |
else puts 'Desconhecido' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment