mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 17:41:41 +00:00
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
This commit is contained in:
parent
1c33cd1a9a
commit
3914133997
@ -95,7 +95,7 @@ salts de línia.` // El mateix tipus
|
||||
// literals Non-ASCII literal. El tipus de Go és UTF-8.
|
||||
g := 'Σ' // El tipus rune, és un àlies de int32 conté un caràcter unicode.
|
||||
|
||||
f := 3.14195 // float64, un número de 64 bits amb coma flotant IEEE-754.
|
||||
f := 3.14159 // float64, un número de 64 bits amb coma flotant IEEE-754.
|
||||
c := 3 + 4i // complex128, representat internament amb dos float64.
|
||||
|
||||
// Sintaxi amb var i inicialitzadors.
|
||||
|
@ -90,7 +90,7 @@ může obsahovat nové řádky` // Opět typ řetězec.
|
||||
// Můžeme použít ne ASCII znaky, Go používá UTF-8.
|
||||
g := 'Σ' // type runa, což je alias na int32 a ukládá se do něj znak UTF-8
|
||||
|
||||
f := 3.14195 // float64, je IEEE-754 64-bit číslem s plovoucí čárkou.
|
||||
f := 3.14159 // float64, je IEEE-754 64-bit číslem s plovoucí čárkou.
|
||||
c := 3 + 4i // complex128, interně uložené jako dva float64.
|
||||
|
||||
// takhle vypadá var s inicializací
|
||||
|
@ -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
|
||||
|
@ -88,7 +88,7 @@ saltos de línea.` // mismo tipo cadena
|
||||
|
||||
// Literal no ASCII. Los ficheros fuente de Go son UTF-8.
|
||||
g := 'Σ' // Tipo rune, un alias de int32, alberga un carácter unicode.
|
||||
f := 3.14195 // float64, el estándar IEEE-754 de coma flotante 64-bit.
|
||||
f := 3.14159 // float64, el estándar IEEE-754 de coma flotante 64-bit.
|
||||
c := 3 + 4i // complex128, representado internamente por dos float64.
|
||||
// Sintaxis var con iniciadores.
|
||||
var u uint = 7 // Sin signo, pero la implementación depende del tamaño
|
||||
|
@ -90,7 +90,7 @@ voi sisältää rivinvaihtoja.` // Sama merkkijonotyyppi.
|
||||
// Ei-ASCII todellisarvo. Go-lähdekoodi on UTF-8.
|
||||
g := 'Σ' // riimutyyppi, lempinimi int32:lle, sisältää unicode-koodipisteen.
|
||||
|
||||
f := 3.14195 //float64, IEEE-754 64-bittinen liukuluku.
|
||||
f := 3.14159 //float64, IEEE-754 64-bittinen liukuluku.
|
||||
c := 3 + 4i // complex128, sisäisesti ilmaistu kahdella float64:lla.
|
||||
|
||||
// var -syntaksi alkuarvoilla.
|
||||
|
@ -87,7 +87,7 @@ sauts de ligne.` // Chaîne de caractère.
|
||||
g := 'Σ' // type rune, un alias pour le type int32, contenant un caractère
|
||||
// unicode.
|
||||
|
||||
f := 3.14195 // float64, un nombre flottant IEEE-754 de 64-bit.
|
||||
f := 3.14159 // float64, un nombre flottant IEEE-754 de 64-bit.
|
||||
c := 3 + 4i // complex128, considéré comme deux float64 par le compilateur.
|
||||
|
||||
// Syntaxe "var" avec une valeur d'initialisation.
|
||||
|
@ -89,7 +89,7 @@ func learnTypes() {
|
||||
g := 'Σ' // rúna(rune) típus, megegyezik az uint32-vel, egy UTF-8 karaktert
|
||||
// tárol
|
||||
|
||||
f := 3.14195 // float64, az IEEE-754 szabványnak megfelelő 64-bites
|
||||
f := 3.14159 // float64, az IEEE-754 szabványnak megfelelő 64-bites
|
||||
// lebegőpontos szám
|
||||
c := 3 + 4i // complex128, belsőleg két float64-gyel tárolva
|
||||
|
||||
|
@ -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.
|
||||
|
||||
|
@ -81,7 +81,7 @@ func learnTypes() {
|
||||
// non-ASCII 리터럴. Go 소스는 UTF-8로 작성해야 한다.
|
||||
g := 'Σ' // 유니코드 코드 포인트를 담고 있고, int32 타입의 가칭(alias)인 rune 타입
|
||||
|
||||
f := 3.14195 // float64, an IEEE-754 64-bit 부동소수 타입
|
||||
f := 3.14159 // float64, an IEEE-754 64-bit 부동소수 타입
|
||||
c := 3 + 4i // complex128, 내부적으로는 두 개의 float64 타입으로 표현됨
|
||||
|
||||
// 초기값과 함께 사용하는 var 키워드.
|
||||
|
@ -77,7 +77,7 @@ pode incluir quebras de linha.` // mesmo tipo string
|
||||
// literal não-ASCII. A linguagem Go utiliza de raiz a codificação UTF-8.
|
||||
g := 'Σ' // tipo rune, um alias para int32, que contém um código unicode
|
||||
|
||||
f := 3.14195 // float64, número de vírgula flutuante de 64bit (IEEE-754)
|
||||
f := 3.14159 // float64, número de vírgula flutuante de 64bit (IEEE-754)
|
||||
c := 3 + 4i // complex128, representado internamente com dois float64s
|
||||
|
||||
// Declaração de variáveis, com inicialização.
|
||||
|
@ -82,7 +82,7 @@ func learnTypes() {
|
||||
// Символ не из ASCII. Исходный код Go в кодировке UTF-8.
|
||||
g := 'Σ' // тип rune, это алиас для типа int32, содержит символ юникода.
|
||||
|
||||
f := 3.14195 // float64, 64-х битное число с плавающей точкой (IEEE-754).
|
||||
f := 3.14159 // float64, 64-х битное число с плавающей точкой (IEEE-754).
|
||||
c := 3 + 4i // complex128, внутри себя содержит два float64.
|
||||
|
||||
// Синтаксис var с инициализациями.
|
||||
|
@ -78,7 +78,7 @@ func learnTypes() {
|
||||
// 非ascii字符。Go使用UTF-8编码。
|
||||
g := 'Σ' // rune类型,int32的别名,使用UTF-8编码
|
||||
|
||||
f := 3.14195 // float64类型,IEEE-754 64位浮点数
|
||||
f := 3.14159 // float64类型,IEEE-754 64位浮点数
|
||||
c := 3 + 4i // complex128类型,内部使用两个float64表示
|
||||
|
||||
// var变量可以直接初始化。
|
||||
|
Loading…
Reference in New Issue
Block a user