We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
package main import ( "fmt" "math/big" ) func main() { var x big.Float x.SetString("1e81391777742999") fmt.Printf("x = %.6g\n", &x) }
prints x = 1e+151 which is incorrect.