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

15 lines
178 B
Go

package main
import (
"fmt"
"regexp"
"runtime"
)
func main() {
r := regexp.MustCompile("ab")
runtime.Breakpoint()
out := r.MatchString("blah")
fmt.Printf("%v\n", out)
}