← Back to Users
zerium's activity in the archive.
this is exactly why I am in the process of learning ruby:class SayHello def say_hello puts "Hello cruel world!" endendsayit = SayHello.new()sayit.say_hello
this is exactly why I am in the process of learning ruby:
class SayHello
def say_hello
puts "Hello cruel world!"
end
end
sayit = SayHello.new()
sayit.say_hello