>>I'm not sure--look at the *.UNLISP file generated by the compiler.
> Where can I find it ? I have looked in home dir and working dir
Place all your function definitions into a file. The file name extension should be mac. From a Maxima prompt,
use the compile_file command. Depending on where the file resides, it might be necessary to use a full pathname;
for example
compile_file("C:/maxima_stuff/myfile.mac");
The *.UNLISP file will be in the same folder as myfile.mac.
--bw