1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
// compile package main import ( "fmt" "io" ) var _ = fmt.Printf var _ io.Reader func main() { greeting := "hello, world" _ = greeting }