mirror of
https://github.com/traefik/yaegi.git
synced 2026-06-01 18:37:56 +00:00
14 lines
123 B
Go
14 lines
123 B
Go
package main
|
|
|
|
import "math"
|
|
|
|
func main() {
|
|
var f float32
|
|
if f < math.MaxFloat32 {
|
|
println("ok")
|
|
}
|
|
}
|
|
|
|
// Output:
|
|
// ok
|