delve/_fixtures/testvariables3.go
aarzilli 50b5fc92e2 Changed api.Variable to have a machine readable value
The new contents of api.Variable are documented in
proc/variables.go.

Implements #243
2015-10-28 18:28:58 -07:00

15 lines
136 B
Go

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