with Instrument;
use Instrument;
procedure Nl00a1 is

    X : Integer := 1;

    Count : Integer := 0;

    Descending : Boolean := Ident_Bool (True);

    package Pr is new Procs (Integer);
    use Pr;

begin

    Start ("NL00A1", "Overhead for Nested Loops - NO loops (control)");

    for I in 1 .. 10000 loop

        Let (Global, Ident (Init));

    end loop;
    Stop;

end Nl00a1;