On Sun, Jan 14, 2018 at 10:35:47AM +0100, pd wrote:
> If fill and ^ are the equivalent of backquote and , in other lisp, why is
> necessary the call to list inside? Why not:
> 
> (de describe-path (Path)
>    (fill
>       '(1st text ^(cadr Path) 2nd text ^(car Path) 3rd text.) ) )

This is more useful, because ^ splices a list, not just a single element.

: (fill '(a b c ^(range 1 7) d e f))
-> (a b c 1 2 3 4 5 6 7 d e f)

♪♫ Alex

-- 
UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe

Reply via email to