Skip to content

Instantly share code, notes, and snippets.

@kkabdol
Created April 15, 2016 09:41
Show Gist options
  • Select an option

  • Save kkabdol/0bcf304a34c577d77865b624163ae93f to your computer and use it in GitHub Desktop.

Select an option

Save kkabdol/0bcf304a34c577d77865b624163ae93f to your computer and use it in GitHub Desktop.
go language exercise
package main
import (
"fmt"
"math"
)
type ErrNegativeSqrt float64
func (e ErrNegativeSqrt) Error() string {
return fmt.Sprintf("cannot Sqrt negative number: %f\n", e)
}
func Sqrt(x float64) (float64, error) {
if x < 0 {
return 0, ErrNegativeSqrt(x)
} else {
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