|
| Hello.csl |
 |
This is the simplest script you'll see! It includes the very minimum of any script you will write:
It includes the declaration of the main function (the entry point of your script)
It includes a welcome message
The source code follows:
|
//////////////////////////////////////////
// Welcome to Galaxy Examinator Script
// Find more on www.galaxysemi.com
// File: hello.csl
//////////////////////////////////////////
main()
{
sysLog("hello galaxy world");
} |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
|