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

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