diff options
Diffstat (limited to 'it-it/go-it.html.markdown')
-rw-r--r-- | it-it/go-it.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/it-it/go-it.html.markdown b/it-it/go-it.html.markdown index 2af2468d..d88e8741 100644 --- a/it-it/go-it.html.markdown +++ b/it-it/go-it.html.markdown @@ -91,7 +91,7 @@ può includere andata a capo.` // Sempre di tipo stringa. // Stringa letterale non ASCII. I sorgenti Go sono in UTF-8. g := 'Σ' // Il tipo runa, alias per int32, è costituito da un code point unicode. - f := 3.14195 // float64, un numero in virgola mobile a 64-bit (IEEE-754) + f := 3.14159 // float64, un numero in virgola mobile a 64-bit (IEEE-754) c := 3 + 4i // complex128, rappresentato internamente con due float64. |