diff options
author | qlikwer <qlikwer@gmail.com> | 2024-02-12 17:18:44 +0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-12 13:18:44 +0100 |
commit | 3914133997b74a9fedf402d2cf345125f0c59ca0 (patch) | |
tree | 3536e6b50e921118e918479799ab4db905ff9549 /de-de/go-de.html.markdown | |
parent | 1c33cd1a9a09b310937f753920ccd149550a71c2 (diff) |
corrected an error in the number pi (#4839)
* Update go-de.html.markdown
corrected an error in the number pi
* Update go.html.markdown
corrected an error in the number pi
* Update go-pt.html.markdown
corrected an error in the number pi
* Update go-hu.html.markdown
corrected an error in the number pi
* Update go-cn.html.markdown
corrected an error in the number pi
* Update go-kr.html.markdown
corrected an error in the number pi
* Update go-ca.html.markdown
corrected an error in the number pi
* Update go-es.html.markdown
corrected an error in the number pi
* Update go-fi.html.markdown
corrected an error in the number pi
* Update go-fr.html.markdown
corrected an error in the number pi
* Update go-ru.html.markdown
corrected an error in the number pi
* Update go-it.html.markdown
corrected an error in the number pi
* Update go.html.markdown
corrected an error in the number pi
Diffstat (limited to 'de-de/go-de.html.markdown')
-rw-r--r-- | de-de/go-de.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/de-de/go-de.html.markdown b/de-de/go-de.html.markdown index 9409e181..30a660fa 100644 --- a/de-de/go-de.html.markdown +++ b/de-de/go-de.html.markdown @@ -82,7 +82,7 @@ Zeilenumbrüche beinhalten.` // Selber Zeichenketten-Typ // nicht-ASCII Literal. Go Quelltext ist UTF-8 kompatibel. g := 'Σ' // Ein Runen-Typ, alias int32, gebraucht für unicode code points. - f := 3.14195 // float64, eine IEEE-754 64-bit Dezimalzahl + f := 3.14159 // float64, eine IEEE-754 64-bit Dezimalzahl c := 3 + 4i // complex128, besteht intern aus zwei float64-er // "var"-Syntax mit Initalwert |