package foo import ( "log" ) func init() { log.Println("foo init") } func Bar(s string) string { return s + "-Foo" }