Servertec ##
M E N U

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

iPP
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-1998 Servertec. All rights reserved.
Last Modified: Tue Jun 30 00:17:54 PDT 1998