go-tour/defer.go
2020-02-04 21:44:36 -06:00

10 lines
101 B
Go

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