Jump start

C Scripting Language
Reference Manual
Version 4.4.0

<< Back  End  Next >>
 
 
INDEX
Introduction
Installation
Using the CSL executive
   Jump start
   Command line parameters
   Embedding CSL in batch files
Language
Directives
System library
String library
Math library
Regular expression lib.
File library
Database library
Async Communication
Registry/Profile handling
Windows control
C API
C++ Class Interface
CSL links
  

Start out writing a small test program with your favorite text editor and save it to a file named hello.csl:

#loadLibrary 'ZcSysLib'
 
main()
{
  sysLog("hello world");
}

Now run it by entering this command on the command line:

csl hello

NOTE: You can find all samples of this manual in the Samples subdirectory too. You might find it however better to manually enter the smaller samples because you will learn also by typo errors in your script.

  Copyright © IBK Landquart Last revision: 27.05.2002 << Back  Top  Next >>