go-playground/da_tour/datour/defer.go

10 lines
98 B
Go

package datour
import "fmt"
func Defer() {
defer fmt.Println("world")
fmt.Println("hello")
}