Subject Syntax of Declare Variable in storedprocs
Author Frank Ingermann
Hi all,

i would like to suggest a simplification for declaring vars in storedprocs:
it would be nice if one could write

declare variable i1, i2, i3, i4 integer;

rather than

declare variable i1 integer;
declare variable i2 integer;
declare variable i3 integer;
declare variable i4 integer;

as this would make quite some of my sp's a whole bit shorter. Should not
affect BLR either, just the parser. (and don't panic, i don't expect/ask
for it to be realized in FB 1.0, Ann! ;-)

i posted the same to ib-priorities, but got no answer - or is this idea
way too stupid to even comment on <bg> ?

tia,
fingerman