블로그를 시작하자 마자~~~~ 코드 투!척 ~_~// open 을 사용하면 다른 곳에서도 사용 가능open class Car { // 속성, 필드 var color : String = "" var speed : Int = 0 // 생성자 constructor constructor() { } constructor(color: String, speed: Int) { this.color = color this.speed = speed } // 메소드, 기능 open fun upSpeed(value : Int) { if ((speed + value) >= 200) speed = 200 e..