blob: 97d5155745c50cb170b20bb399638352201ac1d0 [file] [log] [blame]
// +build OMIT
package main
import "fmt"
const (
Big = 1 << 100 // == 1267650600228229401496703205376
Small = Big >> 99 // == 2
)
func needInt(x int) int { return x*10 + 1 }
func needFloat(x float64) float64 {
return x * 0.1
}
func main() {
fmt.Println(needInt(Small))
fmt.Println(needFloat(Small))
fmt.Println(needFloat(Big))
}