Servertec   ##
Content
Introduction
Release Notes
Features
FAQs
Requirements
Installation
Change Log
Future Plans
Knowledge Base
Reference Manual
Conventions
iPP
Templates
Constants
Identifiers
Operators
Directives
## // /* */
#define
#error
#if{def|ndef}
#include
#message
#undef

Macros
Java API
Sales
Legal
Feedback

 

Text which is ignored and used for documentation purposes.

Syntax

    ## { comment }
    // { comment }
    /* { comment } */

Notes

    comment any text
    ## is used for single line comments which are not preserved when the -e command line option is used.
    // is used for single line comments which are preserved when the -e command line option is used.
    /* */ is used for comments which can span multiple lines, for comments which can be embedded within a statement and for comments which are preserved when the -e command line option is used.

Example

    ## generated code will be inserted here
    #include "gen.inc"
    
    /*
    open, process and close file specified in ofile
    ofile the file to open
    */
    
    // open file
    of = open( ofile )
    
    // process file
    of.process( )
    
    // close file
    of.close( )
    
    
 top of page
 Built with iScript Copyright © 1997-1999 Servertec. All rights reserved.
Last Modified: Tue Jan 26 22:17:56 EST 1999