Hi,
I want to put some code into a Maple library. I'm new to producing packages. The following code runs OK, but when I try to use one of the procedures added by the LibraryTools[Save] command, Maple returns
input: MySum(a, b);
output: MyMapleLibrary:-MySum(a, b)
Why does Maple return an unevaluated call to MySum?
The code is below:
restart:
with(LibraryTools):
MyMapleLibrary:=module()
description "A sample Maple library.":