Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Message from discussion rant: LISP is non-functional!

Received: by 10.68.224.230 with SMTP id rf6mr10809257pbc.4.1330904097934;
        Sun, 04 Mar 2012 15:34:57 -0800 (PST)
Path: h9ni39936pbe.0!nntp.google.com!news1.google.com!news.glorb.com!feeder.erje.net!eternal-september.org!feeder.eternal-september.org!mx04.eternal-september.org!.POSTED!not-for-mail
From: Tim Bradshaw <t...@tfeb.org>
Newsgroups: comp.lang.lisp
Subject: Re: rant: LISP is non-functional!
Date: Sun, 4 Mar 2012 23:34:57 +0000 (UTC)
Organization: A noiseless patient Spider
Lines: 7
Message-ID: <1667335984352596545.924861tfb-tfeb.org@reader443.eternal-september.org>
References: <13373082.196.1330886061306.JavaMail.geo-discussion-forums@vbhv6> <jj0iq102vfv@enews6.newsguy.com>
Mime-Version: 1.0
Injection-Date: Sun, 4 Mar 2012 23:34:57 +0000 (UTC)
Injection-Info: mx04.eternal-september.org; posting-host="PeSd0FJ6nnasLSDhvFoQbw";
	logging-data="18360"; mail-complaints-to="ab...@eternal-september.org";	posting-account="U2FsdGVkX1+9RFbQF8tzOj23MS0Cmj7G"
User-Agent: NewsTap/3.5.1 (iPad)
Cancel-Lock: sha1:n4l9PE7NO4NPfDyD/UQhroOpbOo=
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

"WJ" <w_a_x_...@yahoo.com> wrote:

> You never used push, pop, or sort?

push and pop do not modify lists. for instance:

(let ((l '(1 2 3))) (let ((m l)) (pop l) m))