This documentation is automatically generated. See Documenting Code for more information.
Overview
This is an example AppJet library that includes JSDoc-style documentation.

In particular, it defines the functions someFunction() and reverseString(). For the full capabilities of JSdoc, see jsdoctoolkit.org .
examples
var x = "Aaron"; print(reverseString(x)); // prints "noraA"
Functions
someFunction ()
Here is a basic function with no arguments and no return value.

Note that you can put HTML markup inside JSDoc-comments.

reverseString (str )
This function reverses a string.
parameters
string str The string to be reversed
returns
string The reversed string
mean3 (x, y, z )
This function calculates the arithmetic mean of three numbers.
parameters
number x First of the three numbers
number y Second of the three numbers
number z Third of the three numbers
returns
number The computed value of (x+y+z)/3
examples
var result = mean3(1,2,3); print(result); // prints "2"
// here is another example: var result = mean3(4,5,6); print(result); //
prints 5
Objects
number
PI
Holds the value of pi. About 3.14159.
string
PASSWORD
Holds the secret password.
Generated by JsDoc Toolkit 1.3.3 on Sun, 26 Oct 2008 19:45:39 GMT .
© Copyright 2007-2008 AppJet Inc.