package main
import "fmt"

type Foo struct {
	Bar string
}

func main(){
	x := nil
	x = &Foo { "hello" }
	fmt.Println(x.Bar)
}