gitlab.com/Raven-IO/raven-delve@v1.22.4/_fixtures/testruntimebreakpoint.go (about)

     1  package main
     2  
     3  import (
     4  	"fmt"
     5  	"runtime"
     6  )
     7  
     8  func main() {
     9  	runtime.Breakpoint()
    10  	fmt.Println("broke")
    11  }