You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
println and fmt.Println have a different opinion about the sign of zero in the following
example
http://play.golang.org/p/voOU-eM1gY
The root cause is runtime.printfloat assuming the sign of zero is positive.
Fortunately, only two lines of code are sufficient to resolve this issue.
https://golang.org/cl/38120043
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: