Ruby program to create an object of the class

bookmark

class Sample
    def SayHello
        puts "Hello World";
    end
end

obj = Sample.new();

obj.SayHello()

 


Output:

Hello World