Skip to content

Instantly share code, notes, and snippets.

@gbpereira
Last active January 10, 2018 01:48
Show Gist options
  • Save gbpereira/3c4f6ad8a9411262deb2 to your computer and use it in GitHub Desktop.
Save gbpereira/3c4f6ad8a9411262deb2 to your computer and use it in GitHub Desktop.
if a == 1
puts 'a = 1'
end
if a == 1
puts 'a = 1'
elsif a <= 0
puts 'a <= 0'
else
puts 'a > 1'
end
# condicionais inline
if a == 1 then puts 'a = 1' end
if a == 1 then puts 'a = 1' else puts '!=' end
if a == 1 then puts 'a = 1' elsif a <= 0 then puts 'a <= 0' else puts 'a > 1' end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment