DEBSOURCES
Skip Quicknav
sources / delve / 1.26.0-2 / _fixtures / teststep.go
123456789101112131415
package main import ( "fmt" "runtime" ) func callme() { fmt.Println("hi") } func main() { runtime.Breakpoint() callme() }