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

     1  package main
     2  
     3  import "fmt"
     4  
     5  func stepout(n int) (str string, num int) {
     6  	return fmt.Sprintf("return %d", n), n + 1
     7  }
     8  
     9  func main() {
    10  	stepout(47)
    11  }