Does exist a function in LISP for making a sequence of integers like (0 1 2 3)
?
I found make-sequence
, but I didn't find out how to make a sequence of integers.
I tried make-list
and nothing.
I know that in Scheme exists (build-list 5 (lambda (x) x))
. I tried to change the build-list
with make-list
, but it didn't work.
Some ideas? Thanks
Edit: I need something like make-list 5 ==> (0 1 2 3 4)