package main
import "fmt"
func isPasswordValid(password string) bool {
if len(password) < 8 {
return false
} else {
return true
}
}
func main() {
fmt.Println(isPasswordValid("abc")) // false
fmt.Println(isPasswordValid("helloworld")) // true
}