package twofer import "fmt" // ShareWith just returns "One for , one for me." // if is empty, use "you" func ShareWith(who string) string { ret := "One for %s, one for me." if who == "" { who = "you" } return fmt.Sprintf(ret, who) }