Message 1 of 7
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Is it possible to supply a customized symbol name to defun function?
In the ordinary cases, the programmer must supply "manually" the function names for every function definition, i.e, if you have e.g. 100 function definitions you must supply 100 different names & "MANUALLY" 100 times.
Inside the documentation the type of the supplied name is SYMBOL, however, a simple function definition like
(defun (read "myfunc") (x y) (+ x y))
fails, regardless that (type (read "myfunc")) returns SYM.
..................
I shall rephrase the question to be: "Is it possible to create customized function definitions without writing each function definition one by one?"
Solved! Go to Solution.