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
This is a read-only archive of lispforum.com. The forum was locked to new users and posts and is preserved here as static HTML from a database snapshot taken on 2019-09-07.
2 posts · 8623 views
(define (my-list . args)
args)
(my-list 1 2 3 4) ; ==> (1 2 3 4)
Notice that you have posted this in the Scheme section so this is a Scheme implementation. Scheme uses the word procedure instead of function.