17 lines
159 B
Go
17 lines
159 B
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
func main() {
|
|
println("hello")
|
|
defer func() {
|
|
fmt.Println("bye")
|
|
}()
|
|
println("world")
|
|
}
|
|
|
|
// Output:
|
|
// hello
|
|
// world
|
|
// bye
|