// ======================================================================== // HelloWorld.cs // // This module is a program that prints a simple greeting on the screen. // // ======================================================================== function main() // ---------------------------------------------------- // Entry point for the program. // ---------------------------------------------------- { print("Hello World"); }