package main
import (
"fmt"
"runtime"
)
func main() {
i1 := 1
i2 := 2
p1 := &i1
runtime.Breakpoint()
fmt.Println(i1, i2, p1)
}