mirror of
https://github.com/go-delve/delve.git
synced 2025-11-03 05:47:34 +08:00
11 lines
98 B
Go
11 lines
98 B
Go
package main
|
|
|
|
import "math"
|
|
|
|
var f = 1.5
|
|
|
|
func main() {
|
|
_ = math.Floor(f)
|
|
_ = float64(int(f))
|
|
}
|