I cannot figure out how to call a function n times to be used in another function
I have a function
(defun right-shift (l)
(append l '(0)))
And I need to write another function that needs to shift '(l) n times
(defun right-shift-n-times (l n)
(natp n)
...)
I am not even sure I started that function right and I cannot figure out how to call it n times.