Skip to content

Instantly share code, notes, and snippets.

@kadiralev1
Created February 28, 2019 22:08
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/3698b426951df308d62e7eebfa9310a1 to your computer and use it in GitHub Desktop.
Save kadiralev1/3698b426951df308d62e7eebfa9310a1 to your computer and use it in GitHub Desktop.
var name = (first : "Kadir", last : "Alev")
// bu parametrelere erişmek içinse
print(name.0) // konsol'da Kadir yazar.(Parametre index'i ile bulundu.)
print(name.first) // konsol'da Kadir yazar.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment