1package main 2 3import "fmt" 4 5var v_string string = "foo" 6 7func main () { 8 fmt.Println ("hello") 9 fmt.Printf ("%s\n", v_string) 10} 11