presentations/highlight-js/test/markup/swift/functions.txt

10 lines
98 B
Text

protocol Protocol {
func f1()
func f2()
}
class MyClass {
func f() {
return true
}
}