Skip to content

Instantly share code, notes, and snippets.

@Max95Cohen
Created September 29, 2023 13:54
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 Max95Cohen/d72efa3da35a118ddfaed44279c30982 to your computer and use it in GitHub Desktop.
Save Max95Cohen/d72efa3da35a118ddfaed44279c30982 to your computer and use it in GitHub Desktop.
A tour of Go Exercise: Errors
package main
import (
"fmt"
"math"
)
type ErrNegativeSqrt float64
func (e ErrNegativeSqrt) Error() string {
return fmt.Sprintf("cannot Sqrt negative number: %v", float64(e))
}
func Sqrt(x float64) (float64, error) {
if x < 0 {
return 0, ErrNegativeSqrt(x)
}
return math.Sqrt(x), 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