Prove Pointer in Struct is More Safety
package main
import (
"fmt"
)
func main() {
type coba struct{
tes *string
}
var okee coba
var tesPointer *string
okee.tes = tesPointer
fmt.Println("Hello World! ==>", okee.tes)
}INFO