mirror of
https://github.com/go-delve/delve.git
synced 2025-10-27 20:23:41 +08:00
14 lines
153 B
Go
14 lines
153 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"runtime"
|
|
)
|
|
|
|
func main() {
|
|
dyldenv := os.Getenv("DYLD_LIBRARY_PATH")
|
|
runtime.Breakpoint()
|
|
fmt.Println(dyldenv)
|
|
}
|