mirror of
https://github.com/unknwon/the-way-to-go_ZH_CN.git
synced 2025-08-11 22:53:43 +08:00
9 lines
180 B
Go
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")
|
|
} |