类 / 方法

class Greeting {
    func sayGoodby() {
        print("Goodby!")
    }
}

let greeting = Greeting()
greeting.sayGoodby()