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

12 lines
147 B
Go

package main
import "fmt"
func stepout(n int) (str string, num int) {
return fmt.Sprintf("return %d", n), n + 1
}
func main() {
stepout(47)
}