package body Create_Pack_2 is

    procedure P1 is
--         this creates the task, runs task to completion and terminates
--         execution time for task taken out by control loop
        task T1 is
        end T1;

        task body T1 is
        begin
            Global := Global + A_One;
            Remote;
        end T1;

    begin
        null;
    end P1;

end Create_Pack_2;