From: Jennifer Raccuglia
Subject: exiting
Date: 
Message-ID: <8u55eo$r7k$1@solaria.cc.gatech.edu>
Ok, how do I exit lispworks.

-- 
-JDR

From: Christian Nyb�
Subject: Re: exiting
Date: 
Message-ID: <87lmuxssf9.fsf@siteloft.no>
Jennifer Raccuglia <····@cc.gatech.edu> writes:

> Ok, how do I exit lispworks.

Doesn't evaluating the form 

(bye) 

do what you want?  There's some documentation for getting started at
<URL:http://www.cc.gatech.edu/computing/classes/cs2360/ghall/tools/HLW/hlw.html>
-- 
chr
From: Sunil Mishra
Subject: Re: exiting
Date: 
Message-ID: <3A06E9C5.2060006@everest.com>
Actually that would be (quit), or more accurately (lw:quit). The 
distinction is important if you are working in packages other than 
CL-USER. (If you don't know what a package is, which is likely the case 
given the curriculum I'm guessing you are following, then just stick 
with (quit)). There are a variety of other ways, of course:

* EOF (ctrl-d) on a unix box, though I'm guessing you're on NT.
* (sys::bye), so yes, there is a bye function after a fashion.

Sunil

Christian Nyb� wrote:

> Jennifer Raccuglia <····@cc.gatech.edu> writes:
> 
> 
>> Ok, how do I exit lispworks.
> 
> 
> Doesn't evaluating the form 
> 
> (bye) 
> 
> do what you want?  There's some documentation for getting started at
> <URL:http://www.cc.gatech.edu/computing/classes/cs2360/ghall/tools/HLW/hlw.html>