Adding comments to elements

You can also add comments for elements in the ABL source code. Add the comment just above the declaration of the element in the following format:
/*------------------------------------------------------------------------------
 Purpose:Picks up this comment
 Notes:
@param this is an integer param 
@return 
------------------------------------------------------------------------------*/
 
METHOD PUBLIC VOID main( a as int ):
    RETURN.
 
END METHOD.