เมื่อการเข้ารหัสทับทิมในข้อความประเสริฐ 2 คำสั่งที่สำคัญของพวกเขาสำหรับความคิดเห็นหลายสายคืออะไร?
class Myclass
include MyMethods
def instance_method
puts "hi from the instance method"
show_inspect
end
def self.class_method
puts "hi from class method"
show_inspect
end
def Myclass.class_method1
puts "hi from class method1"
show_inspect
end
end