Question: How to create a help for a module?

Dear All

Say I have created a Maple module called MYMODULE. This means that I have a .mpl file called

mymodule.mpl, with inside

   MYMODULE := module()

   export myfunction;

   ****

   ****

   end module:

   savelib(MYMODULE, "MYMODULE.mla"):

Hence I use it in such a way:

> with(MYMODULE);

                                                              [myfunction]

I want to associate a help to the function myfunction. I know that with Maple18 things have changed

but I am not able to find enough information online. Say I have a .txt file called help_myfunction.txt.

How can I enable this help for my function, so that at the command

> ?myfunction;

the content of help_myfunction.txt shows up?

 

Many thanks,Simone

 

Please Wait...