1package D1 2 3import "fmt" 4 5func example() { 6 fmt.Println(456, "!") // match 7 fmt.Println(456, "!") // match 8 fmt.Println(456, "!") // match 9 fmt.Println(100+20+3, "a"+"") // no match: constant expressions, but not basic literals 10}
View as plain text