RosettaCodeData/Task/Hello-world-Text/ElastiC/hello-world-text.elastic
2023-07-01 13:44:08 -04:00

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();