Sign in
go
/
talks
/
456b5fca3a73edb41339aa18660233f6ded56b9a
/
.
/
2015
/
go-for-java-programmers
/
safe.go
blob: 68e11367908f912c7a1aa55e1b4a3b6a9e8ddc53 [
file
] [
log
] [
blame
]
// +build OMIT
package main
import "fmt"
func newInt(v int) *int {
var n = v
return &n
// HL
}
func inc(p *int) {
*p++
// try removing * // HL
}
func main() {
p := newInt(3)
inc(p)
fmt.Println(p, "points to", *p)
}