panic.go 173 B

123456789
  1. package main
  2. import "fmt"
  3. func main() {
  4. fmt.Println("Starting the program")
  5. panic("A severe error occurred: stopping the program!")
  6. fmt.Println("Ending the program")
  7. }