Name:
Anonymous
2012-09-27 20:36
where?
and is there a tutorial?
Name:
Anonymous
2012-09-29 19:14
OP, you will hate it. It is a kludge of a language, which encourages scary APL/J style stuff like
Xs|m:[X@Xs]X+Xs,r
instead of more readable:
(flet ((sum (Xs)
(if (null Xs)
0
(+ (car Xs)
(sum (cdr X))))))
(mapcar sum Xs))
Just stick to CL. It forces you to write more, but people will at least undestand your code.