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

11 lines
98 B
Text
Raw Permalink Normal View History

2018-12-07 08:48:05 -06:00
protocol Protocol {
func f1()
func f2()
}
class MyClass {
func f() {
return true
}
}