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
Is there an LISP interpreter for win 16/32 ?
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  3 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Bob Riemenschneider  
View profile  
 More options Aug 27 1997, 3:00 am
Newsgroups: comp.lang.lisp
From: r...@violet.csl.sri.com (Bob Riemenschneider)
Date: 1997/08/27
Subject: Re: Is there an LISP interpreter for win 16/32 ?

In article <340444AC.2DF5...@nospan.netright.com> David Hanley

<da...@nospan.netright.com> writes:
> > (defun double(x) (+ x x))
> DOUBLE
> > (compiled-function-p 'double)
> NIL
> > (compile 'double)
> DOUBLE
> > (compiled-function-p 'double)
> NIL

>     Is there a bug in the compiled-function-p function, or is it really
> an interpreter?

Neither.

The symbol DOUBLE is not a compiled function.  Try

  (compiled-function-p #'double)

                                                        -- rar


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Erik Naggum  
View profile  
 More options Aug 27 1997, 3:00 am
Newsgroups: comp.lang.lisp
From: Erik Naggum <cle...@naggum.no>
Date: 1997/08/27
Subject: Re: Is there an LISP interpreter for win 16/32 ?

* David Hanley
| Welcome to Allegro CL Lite for Windows
| Version: 3.0.2 Lite Release: 15-Jan-97 19:03
| Copyright (C) 1992-1997, Franz Inc., Berkeley, CA, USA.
| All rights reserved.
| Loaded Franz Inc. Patches: None.
|
| > (defun double(x) (+ x x))
| DOUBLE
| > (compiled-function-p 'double)
| NIL
| > (compile 'double)
| DOUBLE
| > (compiled-function-p 'double)
| NIL
| >
|
| Is there a bug in the compiled-function-p function, or is it really
| an interpreter?

the symbol `double' could never become a compiled-function no matter how
hard you tried.

this example is from ACL 4.3.1 for Unix, but you should be able to obtain
better results from following this example:

user(2): (defun double (x) (+ x x))
double
user(3): (compiled-function-p 'double)
nil
user(4): (compiled-function-p #'double)
nil
user(5): (compile 'double)
double
nil
nil
user(6): (compiled-function-p 'double)
nil
user(7): (compiled-function-p #'double)
t

(compiled-function-p #'double) should return t in both cases under Allegro
CL Lite for Windows.  let me know if this is not so.

#\Erik
--
404 You're better off without this URL.  Trust me.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
David Hanley  
View profile  
 More options Aug 28 1997, 3:00 am
Newsgroups: comp.lang.lisp
From: David Hanley <da...@nospan.netright.com>
Date: 1997/08/28
Subject: Re: Is there an LISP interpreter for win 16/32 ?

Bob Riemenschneider wrote:
> Neither.

> The symbol DOUBLE is not a compiled function.  Try

>   (compiled-function-p #'double)

>                                                         -- rar

       Whups!  That sucks, beavis.. :)

    dave


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »