next up previous contents
Next: Writing a C Module Up: The CMOD API Previous: THIS - keyword   Contents

RETURN - keyword

RETURN returns its argument from the method in whose implementation it is placed to the caller. What this actually means is to first remove args elements from the stack and then push its argument to the stack. The example is a return of 0.
/*Example of usage:*/
   RETURN(0);



2003-03-04