Page 1 of 1

newLisp vs Perl executable

Posted: Sat Jul 22, 2006 4:22 am
by tburton
I wrote a Perl script a couple years ago that loops through all *.cfm files in a given directory, grabs the documentation from each, and writes that documentation to a text file. Using Perl2exe, the source was packaged into an exe of 347 KB.

I rewrote that script in newLisp and, using link.lsp, the source was packaged into an exe of only 174 KB.

About 50% smaller!

Posted: Sat Jul 22, 2006 5:44 am
by noah
How was the documentation included in the *.CFM files? Was it in the comments sections?

Lutz brought up the idea of embedding documentation in Javadoc-style comments in newLISP modules. He might be working on it, I don't know.

-Noah

About that newLISP executable

Posted: Sat Jul 22, 2006 5:45 am
by noah
Nice, tburton!

Not meaning to ignore your point.

-noah

Posted: Sat Jul 22, 2006 3:10 pm
by tburton
The documentation in the .cfm files is included within "home grown" comment sections.

Tim

Posted: Sat Jul 22, 2006 3:53 pm
by Lutz
Yes I will do a simple newlispdoc system, similar to javadoc.

Lutz