Error checking

This commit is contained in:
Muyao CHEN 2024-06-26 17:49:08 +02:00
parent 20c6932200
commit 4eefdfe47c

View File

@ -1,6 +1,7 @@
package main
import (
"errors"
"fmt"
"net/http"
)
@ -23,10 +24,29 @@ func addValues(x, y int) int {
return x + y
}
// About is the about page handler
func Divide(w http.ResponseWriter, r *http.Request) {
f, err := divideValues(100.0, 0.0)
if err != nil {
fmt.Fprintf(w, "Cannot divide by 0\n")
return
}
fmt.Fprintf(w, "%f divided by %f is %f\n", 100.0, 0.0, f)
}
func divideValues(x, y float32) (float32, error) {
if y <= 0 {
err := errors.New("cannot divide by zero")
return 0, err
}
return x / y, nil
}
// main is the main application function
func main() {
http.HandleFunc("/", Home)
http.HandleFunc("/about", About)
http.HandleFunc("/divide", Divide)
fmt.Printf("Starting application on port %s\n", portNumber)