github.com/neilgarb/delve@v1.9.2-nobreaks/_fixtures/locationsprog3.go (about) 1 package main 2 3 import ( 4 "fmt" 5 "math/rand" 6 "runtime" 7 ) 8 9 func main() { 10 runtime.Breakpoint() 11 fmt.Println(rand.Intn(10)) 12 }