Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created July 2, 2019 21:31
Show Gist options
  • Save parzibyte/12a6efb34c37bf928c89dfa7653747b5 to your computer and use it in GitHub Desktop.
Save parzibyte/12a6efb34c37bf928c89dfa7653747b5 to your computer and use it in GitHub Desktop.
var mayorDeEdad : Boolean = true
var tieneAcceso = false
var haPagadoLaFactura = true && false
if (mayorDeEdad && tieneAcceso){
println("OK")
}
if (haPagadoLaFactura || true){
println("haPagadoLaFactura || true")
}
if (haPagadoLaFactura or true){
println("haPagadoLaFactura or true")
}
if (true == false or false == false and false or true){
println("true == false or false == false and false or true")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment