Newsgroups: comp.lang.lisp
Path: cantaloupe.srv.cs.cmu.edu!rochester!cornellcs!newsstand.cit.cornell.edu!portc01.blue.aol.com!news-peer.gsl.net!news.gsl.net!news.mathworks.com!uunet!news-in2.uu.net!netnews.worldnet.att.net!cbgw2.lucent.com!oucsboss!voyager.cns.ohiou.edu!rmanda
From: rmanda@voyager.cns.ohiou.edu (Ravi S. Manda)
Subject: Re: Proper Lisp format?
X-Nntp-Posting-Host: voyager.cns.ohiou.edu
Message-ID: <DyD8Bo.36x@boss.cs.ohiou.edu>
Sender: news@boss.cs.ohiou.edu (News Admin)
X-Nntp-Posting-Date: Thu Sep 26 20:35:47 1996
Organization: Communication Network Services at Ohio University, Athens
X-Newsreader: TIN [version 1.2 PL2]
References: <52elu5$9ll@crow.cybercomm.net>
Date: Fri, 27 Sep 1996 00:35:48 GMT
Lines: 10

Stephan Rashkin (stever@raven.cybercom.com) wrote:

: Could someone please write the following in proper Lisp format?
: (6+3) / 7

In LISP it is written like this:

(/ (+ 6 3) 7)

Ravi.
