Question: Remove package module

I converted the package,module to a worksheet then executed the example before realizing it all executes at once. 

MyPackage := module()
        export  f1, f2;
        local   loc1;
        option package;
        f1 := proc() loc1 end proc;
        f2 := proc( v ) loc1 := v end proc;
        loc1 := 2;
end module:
savelib( 'MyPackage' ):
restart:
with( MyPackage );

                                    [f1, f2]

Now it's stuck in my library.  How do I remove it?

 

Please Wait...