mirror of
https://github.com/unknwon/the-way-to-go_ZH_CN.git
synced 2025-08-12 02:35:53 +08:00
10 lines
173 B
Go
10 lines
173 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")
|
|
}
|