Skip to content

Instantly share code, notes, and snippets.

@kadiralev1
Last active August 19, 2018 10:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kadiralev1/e1ab0fc9d3a7e218b5814d50f79bfb57 to your computer and use it in GitHub Desktop.
Save kadiralev1/e1ab0fc9d3a7e218b5814d50f79bfb57 to your computer and use it in GitHub Desktop.
func login(kullaniciAdi username:String , kullaniciSifre password:String) -> Bool {
if username == "swift" && password == "1234"
{
return true
}else {
return false
}
}
print(login(kullaniciAdi: "swift", kullaniciSifre: "1234"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment