Skip to content
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

Translate EqualTo into Italian #372

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
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
25 changes: 12 additions & 13 deletions Language/Structure/Comparison Operators/equalTo.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -9,30 +9,30 @@ subCategories: [ "Comparison Operators" ]



= == Equal To
= == Uguale a


// 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 two operands are equal.
=== Descrizione
Confronta la variabile a sinistra con il valore o la variabile a destra dell'operatore. Restituisce vero quando i due operandi sono uguali.
[%hardbreaks]


[float]
=== Syntax
=== Sintassi
[source,arduino]
----
x == y; // is true if x is equal to y and it is false if x is not equal to y
x == y; // è vero se x è uguale a y ed è falso se x non è uguale a 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,13 +44,13 @@ x == y; // is true if x is equal to y and it is false if x is not equal to y
--

[float]
=== Example Code
=== Codice di esempio

[source,arduino]
----
if (x==y) // tests if x is equal to y
if (x==y) // verifica se x è uguale a y
{
// do something only if the comparison result is true
// esegue qualcosa solo se il risultato del confronto è vero
}
----
[%hardbreaks]
Expand All @@ -65,10 +65,9 @@ if (x==y) // tests if x is equal to y
--

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

[role="language"]

--
// SEE ALSO SECTION ENDS