Sign in
go
/
blog
/
5b40331ba5ebddfd391c8387fc0ff32555b42ee6
/
.
/
content
/
constants
/
float4.go
blob: 206d215ca0861feefc65229457f564cf1a45cfbe [
file
] [
log
] [
blame
]
// +build OMIT
package main
import "fmt"
func main() {
const Huge = 1e1000
// START OMIT
fmt.Println(Huge / 1e999)
// STOP OMIT
}