tags:

views:

44

answers:

1

Hello,I've just installed the Allegro Common Lisp CL Enterprise edition. The installation manual said if run (require:build) with output like "fast loading.."then means the installation is successful. However,after I run

cg-user(1): (require :build),I only get "NIL".

Does that mean my installation of the software is unsuccessful?Thank you.

+3  A: 

No, it means that it worked ok. If there was an error, you'd end up in the debugger.

In this case, the immediate NIL response probably means the build module is already loaded into the system.

Xach