Message 1 of 11

Not applicable
08-02-2017
12:32 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi,
I have one basic question.
I am new to lisp, I read/used many lisp programs in which I noticed that there are some functions without C: prefix and they are used in main lisp.
I read about it how they are created and used but still dont understand how exactly to use it.
Example:
(defun C:ABC (XYZ /)
(XYZ)
)
(defun XYZ ()
..................
..................
..................
)
are this can be directly used in main lisp ABC or need another functon to put the final value of XYZ in main lisp ABC?
I have one basic question.
I am new to lisp, I read/used many lisp programs in which I noticed that there are some functions without C: prefix and they are used in main lisp.
I read about it how they are created and used but still dont understand how exactly to use it.
Example:
(defun C:ABC (XYZ /)
(XYZ)
)
(defun XYZ ()
..................
..................
..................
)
are this can be directly used in main lisp ABC or need another functon to put the final value of XYZ in main lisp ABC?
Solved! Go to Solution.