Files

8 lines
105 B
Go
Raw Permalink Normal View History

2024-11-06 10:28:08 +08:00
package main
2025-04-03 15:52:18 +08:00
import "github.com/goplus/lib/c/math"
2024-11-06 10:28:08 +08:00
func main() {
println("sqrt(2) =", math.Sqrt(2))
}