functions.txt 98 B

12345678910
  1. protocol Protocol {
  2. func f1()
  3. func f2()
  4. }
  5. class MyClass {
  6. func f() {
  7. return true
  8. }
  9. }