Slashdot Mirror


User: logmaster

logmaster's activity in the archive.

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

Comments · 1

  1. Re:Why is Ruby gaining such media attention? on Using the Ruby Dev-Tools plug-in for Eclipse · · Score: 1

    --I want to be able to pass functions around like any other object
    #Use Proc.new
    p = Proc.new { } ; o.method( p )

    --Not quite multi-paradigm enough for my taste (why can't I work with plain functions, for example, instead of everything's-a-method?)
    # Works fine.

    def hello()
        print "hello world\n"
    end
    hello