class Sample
def hello
puts "Hello Ruby!"
end
# Now using above class to create objects
object = Sample. new
object.hello