Guest User

Untitled

a guest
Jan 22nd, 2019
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. protocol Walking {
  2. func walk()
  3. }
  4.  
  5. extension Walking {
  6. func walk() {
  7. print("πŸšΆπŸ»β€β™€οΈ")
  8. }
  9. }
  10. protocol Running {
  11. func run()
  12. }
  13.  
  14. extension Running {
  15. func run() {
  16. print("πŸƒπŸ»")
  17. }
  18. }
Add Comment
Please, Sign In to add comment