Servertec // /* */
Content
Introduction
Release Notes
Features
FAQs
Requirements
Installation
Change Log
Future Plans
Knowledge Base
Reference Manual
Conventions
Scriptlets
Data Types
Constants
Variables
Procedures
Operators
Statements
=
break
call
// /* */
continue
exit
include
return
If-Then-End
If-Then-Else-End
If-Then
-ElseIf-Then
-End

If-Then
-ElseIf-Then
-Else-End

Do-Loop
Do-Until-Loop
Do-While-Loop
Do-Loop-Until
Do-Loop-While
For-Next
For-Step-Next

Objects
Wrappers
Servlet
Server Pages
Preprocessor
Executable
Samples
Legal
Contact Us

 

Text which is ignored and used for documentation purposes.

Syntax

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

Notes

    comment any text
    // is used for single line comments.
    /* */ is used for comments which can span multiple lines and for comments which can be embedded within a statement.

Example

    
    /*
    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: Sun Sep 04 14:56:08 EDT 2005