Hi Dean,

> I'd like to split a list '(txt1 2 txt2 6....
> into 2 lists
> '(txt1 txt2...
> and
> '(2 6

You could for example filter them:

   (let
      (Lst '(txt1 2 txt2 6)
         A (filter sym? Lst)
         B (filter num? Lst) )
      ... use A and B ...)



> I found drop (in ninety nine...) which looks ideal but it's apparently
> undefined in pil64.

What 'drop' do you mean? pil64 has all functions of pil32 btw.

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

Reply via email to