Lesson 7: Examples
This is a short lesson description. It gets straight to the point.
Here is how you might define a class in Ruby:
class Greeter
def initialize(name)
@name = name
end
def say_hi
puts "Hi !"
end
end
This is a short lesson description. It gets straight to the point.
Here is how you might define a class in Ruby:
class Greeter
def initialize(name)
@name = name
end
def say_hi
puts "Hi !"
end
end