Slashdot Mirror


User: zerium

zerium's activity in the archive.

Stories
0
Comments
1
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 1

  1. Re:Is programming getting much harder? on Build a Program Now · · Score: 1

    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