Skip to content

Instantly share code, notes, and snippets.

@Pygmalion69
Last active February 29, 2020 14:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Pygmalion69/89821293366d441912906e601c7d347c to your computer and use it in GitHub Desktop.
Save Pygmalion69/89821293366d441912906e601c7d347c to your computer and use it in GitHub Desktop.
A Tour of Go - Exercise: Errors
// https://tour.golang.org/methods/20
package main
import (
"fmt"
)
type ErrNegativeSqrt float64
func (e ErrNegativeSqrt) Error() string {
return fmt.Sprintf("cannot Sqrt negative number: %v",
float64(e))
// convert to float64: https://stackoverflow.com/a/27475316/959505
}
func Sqrt(x float64) (float64, error) {
if x < 0 {
return 0, ErrNegativeSqrt(x)
}
z := 1.0
for i := 0 ; i < 10 ; i++ {
z -= (z*z - x) / (2*z)
}
return z, nil
}
func main() {
fmt.Println(Sqrt(2))
fmt.Println(Sqrt(-2))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment