11 lines
147 B
Go
11 lines
147 B
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
func main() {
|
|
defer func() {
|
|
fmt.Println("Preparing for trouble...\n")
|
|
}()
|
|
panic("Trouble!")
|
|
}
|