Files
moxa/_test/defer1.go
2019-01-15 12:33:02 +01:00

17 lines
159 B
Go

package main
import "fmt"
func main() {
println("hello")
defer func() {
fmt.Println("bye")
}()
println("world")
}
// Output:
// hello
// world
// bye