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

Update go.html.markdown (#4838)

corrected an error in the number pi
This commit is contained in:
qlikwer
2024-02-12 16:58:50 +05:00
committed by GitHub
parent b8d2f410a8
commit 1c33cd1a9a

View File

@@ -95,7 +95,7 @@ can include line breaks.` // Same string type.
// Non-ASCII literal. Go source is UTF-8.
g := 'Σ' // rune type, an alias for int32, holds a unicode code point.
f := 3.14195 // float64, an IEEE-754 64-bit floating point number.
f := 3.14159 // float64, an IEEE-754 64-bit floating point number.
c := 3 + 4i // complex128, represented internally with two float64's.
// var syntax with initializers.