package main
import "fmt"
func hello() {
fmt.Println("world peace")
}
func main() {
hello()
}
go build
//转化成汇编代码
go tool objdump main
package main
import "fmt"
func hello() {
fmt.Println("world peace")
}
func main() {
hello()
}
go build
//转化成汇编代码
go tool objdump main