Skip to content

Instantly share code, notes, and snippets.

@eMdOS
Created May 5, 2020 03:27
Show Gist options
  • Save eMdOS/f33aafc07c9f95b8deef6af35b5f8663 to your computer and use it in GitHub Desktop.
Save eMdOS/f33aafc07c9f95b8deef6af35b5f8663 to your computer and use it in GitHub Desktop.
extension String: Semigroup {
public static func <> (left: String, right: String) -> String {
left + right
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment