1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-31 18:32:22 +02:00

Fixed the statement that rune is an alias for uint32 in the translations

This commit is contained in:
James Baxter
2014-08-19 12:56:27 +01:00
parent d7ead48d1f
commit 4b5cbc91eb
6 changed files with 6 additions and 6 deletions

View File

@@ -79,7 +79,7 @@ func learnTypes() {
개행을 포함할 수 있다.` // 같은 string 타입
// non-ASCII 리터럴. Go 소스는 UTF-8로 작성해야 한다.
g := 'Σ' // 유니코드 코드 포인트를 담고 있고, uint32 타입의 가칭(alias)인 rune 타입
g := 'Σ' // 유니코드 코드 포인트를 담고 있고, int32 타입의 가칭(alias)인 rune 타입
f := 3.14195 // float64, an IEEE-754 64-bit 부동소수 타입
c := 3 + 4i // complex128, 내부적으로는 두 개의 float64 타입으로 표현됨