Nested Procedures

hi,

in the Scripter is there any method to work with nested procedures like

procedure DoSomething(S: string);
var
  X, Y: Integer;

  procedure NestedProc(S: string);
  begin
  ...
  end;

begin
  ...
  NestedProc(S);
  ...
end;

it keeps the code easy to read

There is no such feature in scripter yet, unfortunately.