Last active
January 10, 2018 01:49
-
-
Save gbpereira/09398e46c6fbe9bdcfb7 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
# operadores de comparação | |
12 == 14 # igualdade | |
12 != 14 # diferença | |
12 < 14 # menor | |
12 <= 14 # menor ou igual | |
12 > 14 # maior | |
12 >= 14 # maior ou igual | |
# retorna (-1) se (a < b); 0 se (a == b); 1 se (a > b) | |
a <=> b | |
# comparadores de regex | |
/c/ =~ 'abcde' # retorna 2 | |
/c/ !~ 'abcde' # retorna false | |
# operadores lógicos | |
&& # E lógico | |
|| # OU lógico | |
! # Negação lógica | |
# operadores de range | |
1..10 # range inclusivo | |
1...10 # range exclusivo |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment