mirror of
https://github.com/goplus/llgo.git
synced 2025-09-27 03:56:05 +08:00
13 lines
190 B
Go
13 lines
190 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/goplus/llgo/xtool/nm"
|
|
)
|
|
|
|
func main() {
|
|
sym := nm.Symbol{Name: "abc", Type: nm.Text}
|
|
fmt.Printf("%016x %c %s\n", sym.Addr, sym.Type, sym.Name)
|
|
}
|