help needed
Posted: Tue Apr 21, 2015 11:48 pm
actually I am new programmer in lisp I have question how can I Write a function lists all of the input VARIABLES
your help is appriciated
your help is appriciated

Discuss and learn Lisp programming of all dialects. NOTICE: Site locked. No new users or posts.
http://www.lispforum.com/
Code: Select all
(define (my-list . args)
args)
(my-list 1 2 3 4) ; ==> (1 2 3 4)