Skip to content

Instantly share code, notes, and snippets.

@gbpereira
Last active January 10, 2018 01:49
Show Gist options
  • Save gbpereira/09398e46c6fbe9bdcfb7 to your computer and use it in GitHub Desktop.
Save gbpereira/09398e46c6fbe9bdcfb7 to your computer and use it in GitHub Desktop.
# 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