From 1c33cd1a9a09b310937f753920ccd149550a71c2 Mon Sep 17 00:00:00 2001 From: qlikwer Date: Mon, 12 Feb 2024 16:58:50 +0500 Subject: Update go.html.markdown (#4838) corrected an error in the number pi --- go.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'go.html.markdown') diff --git a/go.html.markdown b/go.html.markdown index 2eb40939..d6468f58 100644 --- a/go.html.markdown +++ b/go.html.markdown @@ -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. -- cgit v1.2.3