This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Car 클래스는 주차하러온 차를 의미합니다. | |
class Car | |
attr_reader :plateNumber | |
#차량 등록 번호를 초기화합니다. 차량 번호는 우선 String 형태로 되어 있다고 가정합니다. | |
def initialize plateNumber | |
@plateNumber = plateNumber #차량 등록번호 | |
end | |
end |