Search Results

10
votes

Is it possible to have an alias for the function name in lisp?

You want defalias. (defalias 'newname oldname) will preserve documentation and even show "newname is an alias for `oldname'" when its documentation is requested. …
10
votes

Uses for both static strong typed languages like Haskell and dynamic (strong) languages like Common LIsp

Programming languages are tools for thinking with. You can express any program in any language, if you're willing to work hard enough. The chief value provided by one programming language over anot …