1package template 2 3import "fmt" 4 5// Test of semantic (not syntactic) matching of basic literals. 6 7func before() (int, error) { return fmt.Println(123, "a") } 8func after() (int, error) { return fmt.Println(456, "!") }
View as plain text