package engine func plural(count int, singular string, pluralForm string) string { if count == 1 { return singular } return pluralForm }