The Procedure
The syntax for an EQUEL/Pascal procedure is:
procedure procedure_name [(formal_parameters)];
[declarations]
begin
[statements]
end;
Syntax Notes:
1. The procedure_name is not processed by EQUEL.
2. Formal parameters and variables declared in a procedure are visible to the procedure and to any nested blocks.
## procedure AppendRow( name : varying[ub] of Char;
## age : Integer;
## salary : Real );
## begin
## APPEND TO emp (#name = name, #age = age,
## salary = salary)
## end;