Re: [O] a lisp question

2013-09-25 Thread Bastien
Nick Dokos writes: > "tuma...@gmail.com" writes: > >> How can i convert (1 2 3 5 7 8 9 10 11 12 13) to >> ((1 2 3 ) (5) (7) (8 9) (10 11 12 13))? >> > > Two problems: > > Wrong list: try comp.lang.lisp instead. > Incomplete problem description: see "How to ask questions > the smart way" at http:

Re: [O] a lisp question

2013-09-24 Thread Nick Dokos
"tuma...@gmail.com" writes: > How can i convert (1 2 3 5 7 8 9 10 11 12 13) to > ((1 2 3 ) (5) (7) (8 9) (10 11 12 13))? > Two problems: Wrong list: try comp.lang.lisp instead. Incomplete problem description: see "How to ask questions the smart way" at http://www.catb.org/esr/faqs/smart-questio

[O] a lisp question

2013-09-24 Thread tuma...@gmail.com
How can i convert (1 2 3 5 7 8 9 10 11 12 13) to ((1 2 3 ) (5) (7) (8 9) (10 11 12 13))?