hello world |
Who can ignore the fundamental example of the CS world ? Certainly we cannot.
package hello; // Import the `basic' package import basic; // Define a simple function function hello() { // Print hello world basic.print( "*** Hello world! ***\n" ); } /* * Here we start to execute package code */ // Invoke the `hello' function hello();