Files
the-way-to-go_ZH_CN/eBook/examples/chapter_13/panic.go
2015-03-03 12:25:25 -05:00

9 lines
180 B
Go

package main
import "fmt"
func main() {
fmt.Println("Starting the program")
panic("A severe error occurred: stopping the program!")
fmt.Println("Ending the program")
}