10 lines
98 B
Go
10 lines
98 B
Go
package datour
|
|
|
|
import "fmt"
|
|
|
|
func Defer() {
|
|
defer fmt.Println("world")
|
|
|
|
fmt.Println("hello")
|
|
}
|