Hello World
class HELLO_WORLD is main is #OUT+"Hello World\n"; end; end;A few remarks:
- Class names are ALL CAPS; this is not only a convention but is enforced by the compiler.
- The method called
mainis the entry point for execution. It may belong to any class, but if this is different fromMAIN, it must be specified as a compiler option. #is the constructor symbol, calling methodcreateof the corresponding class; here it is used for instantiating theOUTclass, which is actually stdout.- The
+operator has been overloaded here to stand for stream append. - Operators such as
+are syntactic sugar for conventionally named method calls:a + bstands fora.plus(b). The usual arithmetic precedence conventions are used to resolve the calling order of methods in complex formulae. - The program layout allows for pre- and post-conditions (not shown here), showing Sather's Eiffel lineage.
Read more about this topic: Sather
Famous quotes containing the word world:
“It is not quite the same when we are seventy-two as when we are twenty-seven; still I am glad of what is left, and wish we might both hold out till the victory we have sought is won, but all the same the victory is coming. In the aftertime the world will be the better for it.”
—Lucy Stone (18181893)
“The heroes of the world community are not those who withdraw when difficulties ensue, not those who can envision neither the prospect of success nor the consequence of failurebut those who stand the heat of battle, the fight for world peace through the United Nations.”
—Hubert H. Humphrey (19111978)
Related Subjects
Related Phrases
Related Words