Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. class ParentClass {
  2. func method1() {}
  3. func method2() {}
  4. }
  5. class ChildClass: ParentClass {
  6. override func method2() {}
  7. func method3() {}
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement