What changes are proposed under "Block Constructs"?
I imagine something like Ada and PL/SQL where you can have blocks nested arbitrarily with their own scope and function declarations:
PROCEDURE foo IS
var NUMBER;
PROCEDURE bar IS
.. and so on..
BEGIN ...
END;
BEGIN
bar();
END; |