Skip to content

Translation of greaterThanOrEqualTo into Italian #374

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 15 additions & 15 deletions Language/Structure/Comparison Operators/greaterThanOrEqualTo.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -9,30 +9,30 @@ subCategories: [ "Comparison Operators" ]



= >= Greater Than or Equal To
= > Maggiore o uguale di


// OVERVIEW SECTION STARTS
[#overview]
--

[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
Expand All @@ -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]

--
Expand All @@ -69,8 +69,8 @@ Positive numbers are greater than negative numbers.
--

[float]
=== See also
=== Vedi anche


--
// SEE ALSO SECTION ENDS
// SEE ALSO SECTION ENDS