El 14/01/2018 10:02, "Alexander Burger" <a...@software-lab.de> escribió:
>
> Then the equivalent of a backquote in other Lisp is 'fill':
>
> (de describe-path (Path)
>    (fill
>       '(1st text ^(list (cadr Path)) 2nd text ^(list (car Path)) 3rd
text.) ) )
>

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.) ) )

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

Reply via email to