Param
Define a parameter for a function.
Required Attributes
name
name of the property to define.
Usage Examples
Example #1
<function name="func3">
   
<param name="nomore" type="optional" />
   
<local>
      
<echo>In func3</echo>
   
</local>
</function>
Example #2
<function name="func2">
   
<param name="nomore" type="required" />
   
<param default="1000" name="iterations" />
</function>