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:
“A world is in flames, and you are cracking silly jokes.”
—Friedrich Dürrenmatt (19211990)
“For in all the world there are no people so piteous and forlorn as those who are forced to eat the bitter bread of dependency in their old age, and find how steep are the stairs of another mans house. Wherever they go they know themselves unwelcome. Wherever they are, they feel themselves a burden. There is no humiliation of the spirit they are not forced to endure. Their hearts are scarred all over with the stabs from cruel and callous speeches.”
—Dorothy Dix (18611951)
Related Subjects
Related Phrases
Related Words