Question: Delcaring global and local variables inside a procedure

After reading pg. 201 in the INTRODUCTORY PROGRAMMING GUIDE, I got the impression that one could declare both local and global variables within a proceedure. This parses proc1 := proc () local i; end proc; So does this proc1 := proc () global j; end proc; But not this proc1:=proc() local i: global j: end proc; Is it possible to declare both global and local variables from inside a procedure?
Please Wait...