Slashdot Mirror


User: d2them

d2them's activity in the archive.

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

Comments · 1

  1. Re:helloworld in Eiffel on SmartEiffel 1.0 Released · · Score: 1
    or simply:

    class HELLO_WORLD
    create
    make
    feature --creation
    make is
    -- print out hello world
    do
    print("Hello, World!%N")
    end -- make
    end -- class HELLO_WORLD