> I think the package is ready now; Small comment. (I didn't yet go through it in full detail.)
There is a difference in SPAD between ++ and -- comments. In fact, -- introduces ordinary language comments which are ignored by the compiler. The ++ comments are more like docstrings in python or java. They can only appear at certain places (before the package/domain/category starts) or after function signatures. (See my previous mail.) So the first two usages of your ++ docstrings are fine while any ++ comment that comes after the "add" should be changed into a --. The ++ docstrings are part of the compiled source code. The -- comments are not in compiled code. Hope that helps. Ralf PS: Maybe I should have pointed you to http://axiom-wiki.newsynthesis.org/ProgrammingSPAD in the first place. PPS: For learning SPAD, I usually refer to the Aldor User Guide. Aldor is not exactly SPAD, but, in fact, it was invented as the (future) Axiom Library compiler. (But history is a bit involved here.) Nevertheless, the Aldor User Guide is a good source to understand important notions of the language. Nearly all of them are identical to SPAD. See http://fricas.github.io/ for more documentation, in particular the link to "Language Diferences". PPPS: Well, I should not forget to say: Welcome to FriCAS! -- You received this message because you are subscribed to the Google Groups "FriCAS - computer algebra system" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/fricas-devel. For more options, visit https://groups.google.com/d/optout.
