Skip to content

Instantly share code, notes, and snippets.

@tsh-code
Created January 21, 2019 15:38
Show Gist options
  • Save tsh-code/2ef576d068e8e403801da4b1164a017a to your computer and use it in GitHub Desktop.
Save tsh-code/2ef576d068e8e403801da4b1164a017a to your computer and use it in GitHub Desktop.
PO-extensions.swift
protocol Running {
func run()
}
extension Running {
func run() {
print("🏃🏻")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment