Created
June 22, 2020 15:44
-
-
Save SlaunchaMan/cfaaea303ecdd8c438ab7518dacd555c to your computer and use it in GitHub Desktop.
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
import Foundation | |
let cast = ["πΆββοΈπΆπ»ββοΈπΆπΌββοΈπΆπ½ββοΈπΆπΎββοΈπΆπΏββοΈπΆββοΈπΆπ»ββοΈπΆπΌββοΈπΆπ½ββοΈπΆπΎββοΈπΆπΏββοΈ"] | |
var string = "Virtual #WWDC20 queue:\n" | |
while string.count <= 280 { | |
string.append(cast.randomElement()!) | |
} | |
print(string) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment