From: Stephan Rashkin
Subject: Proper Lisp format?
Date: 
Message-ID: <52elu5$9ll@crow.cybercomm.net>
Could someone please write the following in proper Lisp format?
Please E-mail me at ·······@cybercomm.net"

(6+3) / 7

thanks,
Steve
From: Ravi S. Manda
Subject: Re: Proper Lisp format?
Date: 
Message-ID: <DyD8Bo.36x@boss.cs.ohiou.edu>
Stephan Rashkin (······@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.