Question: Copying input from older Maple versions

Hi!

I have to use code from older Versions of Maple which is for example of the form (only much longer)

> a := proc()
> local i;
> i := 89;
> i;
> end proc;
> a();

and I want to copy that code to an Maple12-sheet. Unfortunately, I can't insert it because the ">"-symbols are copied as well an Maple 12 wants something of that kind (using SHIFT-RETURN):

> a := proc()
    local i;
    i := 89;
    i;
   end proc;
> a();

Using the (pretty awkward) export-functions didn't help.

Do you have any hints? It needn't be a perfect solution, just efficient :-)



 

Please Wait...