go-learning/tour_of_go/l3/\

14 lines
106 B
Plaintext
Raw Permalink Normal View History

2025-08-30 12:55:18 +00:00
package main
import (
"fmt"
)
func Sqrt(x float64) float64 {
}
func main() {
fmt.Println(Sqrt(2))
}