Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!mnetor!uunet!ccicpg!cracraft From: cracraft@ccicpg.UUCP (Stuart Cracraft) Newsgroups: comp.emacs Subject: GNU LISP quiz question Message-ID: <1929@ccicpg.UUCP> Date: Sun, 16-Aug-87 03:28:08 EDT Article-I.D.: ccicpg.1929 Posted: Sun Aug 16 03:28:08 1987 Date-Received: Sun, 16-Aug-87 22:42:16 EDT Organization: CCI CPD, Irvine CA Lines: 27 GNU LISP Quiz Question ---------------------- Write a GNU LISP function that takes lists of the following form (list can be arbitrarily deep at any level): (A (B (C (N) D) E (F G (M)))) And expands them to text with full elaboration of the depth, listing all possible variations taking depth into account. The atoms should be listed two per line. Expansion of above expression follows: Start expansion: A B C N ...blank line... A B D ...blank line... A E F ...blank line... A E G M End expansion Stuart