Created
October 7, 2018 16:56
-
-
Save yunustek/c0cb1bbcfdd72b466324a9231cac9186 to your computer and use it in GitHub Desktop.
Random Sayı Üretimi
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var groceryList = ["Milk", "Eggs", "Bread", "Nutella"] | |
if let randomGroceryItem = groceryList.randomElement() { | |
print("The random grocery item is \(randomGroceryItem)") | |
} | |
//The random grocery item is Milk |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment