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
package main
import "fmt"
func main() {
fmt.Println(float64(2.2250738585072011e-308))
}
prints
2.2250738585072014e-308
should be
2.225073858507201e-308
the problem is in the value generated by 6g,
not the printing routines