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

13 lines
123 B
Go

package main
import (
"fmt"
"math/rand"
"runtime"
)
func main() {
runtime.Breakpoint()
fmt.Println(rand.Intn(10))
}