in lunes.go [425:431]
func startsWithLowerCase(value string) bool { if len(value) == 0 { return false } c := value[0] return 'a' <= c && c <= 'z' }