Files

14 lines
106 B
Plaintext
Raw Permalink Normal View History

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