Files
LearnGO/go/pkg/mod/github.com/go-delve/delve@v1.23.0/_fixtures/teststep.go
T
2024-09-19 21:38:24 -04:00

16 lines
130 B
Go

package main
import (
"fmt"
"runtime"
)
func callme() {
fmt.Println("hi")
}
func main() {
runtime.Breakpoint()
callme()
}