Eiffel    hoch
  ähnliche Sprachen: Blue   Sather  
 


 Hello World   Michael Neumann
indexing
        title:  "Hello World";        
        author: "Michael Neumann";
        
class MAIN creation
        make
                
feature
        make is
        do
           io.put_string("Hello World");
           io.new_line
        end -- make
end -- class MAIN
Gibt "Hello World" auf dem Bildschirm aus.


 Hello World   SmallEiffel   Michael Neumann
-- 
-- compile with: smalleiffel compile helloworld
-- 
indexing
   title: "Hello World";
   author: "Michael Neumann";

class HELLOWORLD

creation {ANY}
   make

feature {ANY}

   make is
      do
         std_output.put_string("Hello World");
         std_output.put_new_line;
      end -- make

end -- class HELLOWORLD
Gibt "Hello World" auf dem Bildschirm aus.