Search found 1 match

by zaxonus
Wed Feb 20, 2019 2:57 am
Forum: Common Lisp
Topic: Using &rest parameters in Common Lisp
Replies: 3
Views: 23393

Using &rest parameters in Common Lisp

I am having some trouble using *&rest parameters* in a lisp program (with Common Lisp). My knowledge of the syntax not being perfect, I may be doing something wrong. I have two functions: (defun func-one(&rest params) .....) (defun func-two(param-a param-b &rest params) .....) They are w...