From 2c2dce05fd2c7132ef911b83415a97bac0a3b891 Mon Sep 17 00:00:00 2001 From: Giacomo Alessandroni Date: Thu, 6 Oct 2022 17:49:23 +0200 Subject: [PATCH 1/3] Translation of greaterThanOrEqualTo into Italian --- .../greaterThanOrEqualTo.adoc | 30 +++++++++---------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/Language/Structure/Comparison Operators/greaterThanOrEqualTo.adoc b/Language/Structure/Comparison Operators/greaterThanOrEqualTo.adoc index 26c4ec1..48d6d2f 100644 --- a/Language/Structure/Comparison Operators/greaterThanOrEqualTo.adoc +++ b/Language/Structure/Comparison Operators/greaterThanOrEqualTo.adoc @@ -9,7 +9,7 @@ subCategories: [ "Comparison Operators" ] -= >= Greater Than or Equal To += > Maggiore o uguale di // OVERVIEW SECTION STARTS @@ -17,22 +17,22 @@ subCategories: [ "Comparison Operators" ] -- [float] -=== Description -Compares the variable on the left with the value or variable on the right of the operator. Returns true when the operand on the left is greater (bigger) than or equal to the operand on the right. +=== Descrizione +Confronta la variabile a sinistra con il valore o la variabile a destra dell'operatore. Restituisce vero quando l'operando a sinistra è maggiore (più grande) o uguale dell'operando a destra. [%hardbreaks] [float] -=== Syntax +=== Sintassi [source,arduino] ---- -x >= y; // is true if x is bigger than or equal to y and it is false if x is smaller than y +x >= y; // è vero se x è maggiore o uguale di y ed è falso se x è minore di y ---- [float] -=== Parameters -`x`: variable. *Allowed data types:* int, float, double, byte, short, long + -`y`: variable or constant. *Allowed data types:* int, float, double, byte, short, long +=== Parametri +`x`: variabile. *Tipi di dati consentiti:* int, float, double, byte, short, long + +`y`: variabile o costante. *Tipi di dati consentiti:* int, float, double, byte, short, long -- // OVERVIEW SECTION ENDS @@ -44,20 +44,20 @@ x >= y; // is true if x is bigger than or equal to y and it is false if x is s -- [float] -=== Example Code +=== Codice di esempio [source,arduino] ---- -if (x>=y) // tests if x is greater (bigger) than or equal to y +if (x>=y) // verifica se x è maggiore (più grande) o uguale di y { -// do something only if the comparison result is true +// esegue qualcosa solo se il risultato del confronto è vero } ---- [%hardbreaks] [float] -=== Notes and Warnings -Positive numbers are greater than negative numbers. +=== Note e Avvertimenti +I numeri positivi sono maggiori dei numeri negativi. [%hardbreaks] -- @@ -69,8 +69,8 @@ Positive numbers are greater than negative numbers. -- [float] -=== See also +=== Vedi anche -- -// SEE ALSO SECTION ENDS \ No newline at end of file +// SEE ALSO SECTION ENDS From baa6637a44c6cde1020f9366a2ae33dceeb934dc Mon Sep 17 00:00:00 2001 From: Giacomo Alessandroni Date: Fri, 14 Oct 2022 15:15:32 +0200 Subject: [PATCH 2/3] Update Language/Structure/Comparison Operators/greaterThanOrEqualTo.adoc Thanks @g-castronovo Co-authored-by: Gaia Castronovo <53472903+g-castronovo@users.noreply.github.com> --- .../Structure/Comparison Operators/greaterThanOrEqualTo.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Language/Structure/Comparison Operators/greaterThanOrEqualTo.adoc b/Language/Structure/Comparison Operators/greaterThanOrEqualTo.adoc index 48d6d2f..313fba7 100644 --- a/Language/Structure/Comparison Operators/greaterThanOrEqualTo.adoc +++ b/Language/Structure/Comparison Operators/greaterThanOrEqualTo.adoc @@ -26,7 +26,7 @@ Confronta la variabile a sinistra con il valore o la variabile a destra dell'ope === Sintassi [source,arduino] ---- -x >= y; // è vero se x è maggiore o uguale di y ed è falso se x è minore di y +x >= y; // è vero se x è maggiore o uguale a y ed è falso se x è minore di y ---- [float] From e10641a1de0d051b58663a710f5123ac534c67cb Mon Sep 17 00:00:00 2001 From: Giacomo Alessandroni Date: Fri, 14 Oct 2022 15:15:58 +0200 Subject: [PATCH 3/3] Update Language/Structure/Comparison Operators/greaterThanOrEqualTo.adoc Thanks @g-castronovo Co-authored-by: Gaia Castronovo <53472903+g-castronovo@users.noreply.github.com> --- .../Structure/Comparison Operators/greaterThanOrEqualTo.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Language/Structure/Comparison Operators/greaterThanOrEqualTo.adoc b/Language/Structure/Comparison Operators/greaterThanOrEqualTo.adoc index 313fba7..8ddb665 100644 --- a/Language/Structure/Comparison Operators/greaterThanOrEqualTo.adoc +++ b/Language/Structure/Comparison Operators/greaterThanOrEqualTo.adoc @@ -48,7 +48,7 @@ x >= y; // è vero se x è maggiore o uguale a y ed è falso se x è minore di [source,arduino] ---- -if (x>=y) // verifica se x è maggiore (più grande) o uguale di y +if (x>=y) // verifica se x è maggiore (più grande) o uguale a y { // esegue qualcosa solo se il risultato del confronto è vero }