Servertec ##
Reference Manual
Conventions
iPP
Templates
Constants
Identifiers
Operators
Directives
## // /* */
#define
#error
#if{def|ndef}
#include
#message
#pragma
#undef

Macros
Java API

Return

 

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
Copyright © 1998-2005 Servertec. All rights reserved.
Privacy Statement.
Last Modified: Mon Sep 05 14:25:37 EDT 2005