what are the most frequently used functions?

Theerasak Photha hanumizzle at gmail.com
Sun Oct 29 01:47:40 EST 2006


On 28 Oct 2006 22:55:29 -0700, Xah Lee <xah at xahlee.org> wrote:
> Barry Margolin wrote:
> « For Lisp, just look for symbols that are immediately preceded by (
> ...»
>
> Thanks a lot! great thought.

An even cleaner way to do this would be to iterate over the list
s-exprs in any given lisp source, use read on them, then just use car
on the resulting list (or first for the infinitely superior common
lisp language).

This will get special forms and actual functions indiscriminately, but
they may be seen as equivalent from a sloppy perspective.

-- Theerasak



More information about the Python-list mailing list