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
=
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
Server Side
Preprocessor
Executable
Make
Samples
Legal
Feedback
|
Transfers control to a subroutine.
Syntax
name ( { expression { ,
expression }... } )
Notes
name
the name of the function to call.
expression the expression
to evaluate.
Example
inputFile.close( )
println( "hello world" )
|