Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save MojtabaHs/a51a30d7c720ea0dd9628679afec0a2e to your computer and use it in GitHub Desktop.
Save MojtabaHs/a51a30d7c720ea0dd9628679afec0a2e to your computer and use it in GitHub Desktop.
func *(lhs: @autoclosure () -> Void, rhs: Int) { for _ in 1...rhs { lhs() } }
func *(lhs: String, rhs: Int) -> String { String(repeating: lhs, count: rhs) }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment