10 lines
101 B
Go
10 lines
101 B
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
func main() {
|
|
defer fmt.Println("world")
|
|
|
|
fmt.Println("hello")
|
|
}
|