github.com/cnboonhan/delve@v0.0.0-20230908061759-363f2388c2fb/_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 }