github.com/cnboonhan/delve@v0.0.0-20230908061759-363f2388c2fb/_fixtures/issue877.go (about)

     1  package main
     2  
     3  import (
     4  	"fmt"
     5  	"os"
     6  	"runtime"
     7  )
     8  
     9  func main() {
    10  	dyldenv := os.Getenv("DYLD_LIBRARY_PATH")
    11  	runtime.Breakpoint()
    12  	fmt.Println(dyldenv)
    13  }