Servertec Procedures
M E N U

Content
Introduction
Release Notes
Requirements
Installation
Change Log
Future Plans
Knowledge Base
Referance Manual
Conventions
Scriptlets
Data Types
Constants
Variables
Procedures
Operators
Statements
Objects
Wrappers
Server Side
Preprocessor
Executable
Make
Samples
Legal
Feedback

 


A procedure is a subroutine or a function which performs a specfic operation. Values maybe passed as arguements into a procedure. A subroutine is a procedure which does not return a value. A function is a procedure which returns a value.

Syntax

    { variable = } name ( { expression { , expression }... } )

Example

    value = input( "Enter a number" )
    if value = "" then
        exit( 0 )
    end

    print( abs( value ) )

top of page
Built with iScript Copyright © 1997-1998 Servertec. All rights reserved.
Last Modified: Wed Apr 15 00:16:38 EDT 1998