Comment Re:Is programming getting much harder? (Score 1) 281
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
class SayHello
def say_hello
puts "Hello cruel world!"
end
end
sayit = SayHello.new()
sayit.say_hello