Skip to content

Instantly share code, notes, and snippets.

@SlaunchaMan
Created June 22, 2020 15:44
Show Gist options
  • Save SlaunchaMan/cfaaea303ecdd8c438ab7518dacd555c to your computer and use it in GitHub Desktop.
Save SlaunchaMan/cfaaea303ecdd8c438ab7518dacd555c to your computer and use it in GitHub Desktop.
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