18 lines
315 B
Text
18 lines
315 B
Text
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();
|