@ Jack -- perfect starter !!! thank you ( i only found a pascal written in Scheme to cheat a little ).
@ Mike -- you can turn off those bignum's in CL to get faster native code , and if you wish you can write non-variadic and "typed" code too -- no problem
Attached something special -- it's my Fibonacci definition -- , the assignment of the variables is done in parallel here (Lisp has such things p.e. "let" is parallel assigment ; "let*" is serial assignment -- here it is about psetf (or psetq) this means something as :
a = 4
b = 5
& then a=b : b=a resulting in
a = 5
b = 4
-- cool not , the basic beginners mistake corrected !!!
best Rob
.