Function Prototype Statement Syntax
The Function Prototype Statement has the following BNF syntax:
<function prototype statement> ::=
<unparameterized prototype> | <parameterized prototype>
<unparameterized prototype> ::=
FUNCTION <subdesign> ( <input list> )
RETURNS ( <output list> );
| FUNCTION <primitive> ( <input list> )
RETURNS ( <output list> );
<parameterized prototype> ::=
FUNCTION <subdesign> ( <input list> )
WITH ( <parameter list> )
RETURNS ( <output list> );
Back to Top
Created by chm2web html help conversion utility. |