Diferencia entre revisiones de «or»

De ArduWiki
Saltar a: navegación, buscar
(Página creada con «== Descripción == == Sintaxis == <pre> </pre> == Advertencias == == Ejemplo == <pre> </pre> == Vea también == * not * and == Referencias == * [https://www.ar...»)
 
(Descripción)
Línea 1: Línea 1:
 
== Descripción ==
 
== Descripción ==
 +
 +
{| class="wikitable col3cen"
 +
!a!!b!!a or b
 +
|-
 +
|0||0||0
 +
|-
 +
|1||0||1
 +
|-
 +
|0||1||1
 +
|-
 +
|1||1||1
 +
|}
  
 
== Sintaxis ==
 
== Sintaxis ==

Revisión del 00:04 19 jun 2018

Descripción

a b a or b
0 0 0
1 0 1
0 1 1
1 1 1

Sintaxis


Advertencias

Ejemplo


Vea también

Referencias