编辑代码

func checkLogin (user:String,password:String) -> Bool {
       if user =="zfchen" && password =="123456"{
return true
}
else {
return false
}
}