# 끝에 ; 붙이지 않아요 puts "hello world" # if는 마치 영어 문장처럼도 사용가능해요 puts "x is less than 5" if x < 5 # method에 ()는 생략가능해요 car = Car.new car.drive car.update(handle:"good", tire:"best") # 반복은 다음과 같이 사용해요 comments.each do |comment| puts comment end
By ChungSub Kim
TEDxPURPLEWORKS 2013/10/30 발표자료
hello :)