기존에 정의되어 있는 클래스에 함수를 추가하는 기능
fun main() { val test = Test() Test().hello() test.hi() } fun Test.hi() = print("하이") class Test() { fun hello() = println("안녕") fun bye() = printlnt("잘가") }