nouns, verbs, why?



Mehmet Suzen wrote:
> Dear All,
>
> My one cent suggestion to the problem you
> address is introducing a re-write sin(x)
> function as a noun function. It is possible
> with Maxima and verbify it later.
>
> Maxima 5.16.3 http://maxima.sourceforge.net
> (%i1) declare(fs,noun);
> (%o1)                                done
> (%i2) fs(x):=(sin(x));
> (%o2)                          ''fs(x) := sin(x)
> (%i3) fs(0);
> (%o3)                                fs(0)
> (%i4) gs:verbify(fs);
> (%o4)                                 fs
> (%i5) gs(0);
> (%o5)                                  0
>
>   
I think that this can be more simply handled by:

Sin(0);   /* note, capital */

%,Sin=sin;