8 lines
106 B
Go
8 lines
106 B
Go
package main
|
|
|
|
import "github.com/goplus/llgo/c/math"
|
|
|
|
func main() {
|
|
println("sqrt(2) =", math.Sqrt(2))
|
|
}
|