delve/_fixtures/testvariables3.go

15 lines
149 B
Go
Raw Normal View History

package main
import (
"fmt"
"runtime"
)
func main() {
i1 := 1
i2 := 2
p1 := &i1
runtime.Breakpoint()
fmt.Printf("%d %d %v\n", i1, i2, p1)
}