On Wednesday, July 11, 2012 5:49:30 PM UTC-4, root wrote:
> Consider the specification,
>
> procedure_call ::= procedure_name [ ( parameter_association_list ) ]
>
> association_list ::= association_element { , association_element }
>
> name ::= simple_name |
>
> indexed_name ::= prefix ( expression { , expression } )
>
> How do you handle (1) in PROC1(1): as association list or as expression?
Assuming PROC1 is declared to be a procedure, then the expression 1 is used as the first association element in that procedure.
Kevin Jennings
|