home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 3 / AACD03.BIN / AACD / Programming / sofa / archive / SmallEiffel.lha / SmallEiffel / lib_show / cecil / JVM / Example1.java next >
Text File  |  1999-06-05  |  634b  |  32 lines

  1. import hello_world._any;
  2. import hello_world.hello_world;
  3.  
  4. public class Example1 {
  5.     /* To run this example, procede like this :
  6.  
  7.            compile_to_jvm hello_world
  8.            javac Example1.java
  9.            java Example1
  10.  
  11.     */
  12.   public static void main(String[] args) {
  13.       hello_world root;
  14.  
  15.       /* To initialize the Eiffel runtime :
  16.        */
  17.       _any._initialize_eiffel_runtime(args);
  18.  
  19.       /* Creation of the root object :
  20.        */
  21.       root = new hello_world();
  22.  
  23.       /* Launching the root procedure :
  24.        */
  25.       root.make();
  26.  
  27.       /* Launching again the root procedure :
  28.        */
  29.       root.make();
  30.   }
  31. }
  32.