delve/_fixtures/testruntimebreakpoint.go

12 lines
104 B
Go
Raw Normal View History

2015-04-25 19:13:35 +00:00
package main
import (
"fmt"
"runtime"
)
func main() {
runtime.Breakpoint()
fmt.Println("broke")
}