CS4341 Introduction to Artificial Intelligence. A97
Department of Computer Science
Worcester Polytechnic Institute
About Lisp:
You can find Ibuki Common Lisp (ibcl), Kyoto Common Lisp (kcl), or
Scheme (scheme) on the CCC machines.
Also, you can find the text software in the /cs/cs4341/ directory of
the CCC machines. You are welcome to look at the code contained there
but you cannot use it in your assignments. YOU MUST DEVELOP YOUR OWN
CODE!!
To run Kyoto Common Lisp in the CCC machines:
Type: kcl
You will get the message
"AKCL (Austin Kyoto Common Lisp) Version(1.609)
Thu Mar 12 17:14:07 EST 1992
Contains Enhancements by W. Schelter"
followed by a prompt: " > "
Type: (help)
to obtain help.
Type: (bye)
to exit the shell.
Type: (load "foo")
to load file "foo". By default the extension of the file will be
assumed to be .lsp (lisp) or .o (compiled code)
Type: (compile-file "foo")
to create a compiled file foo.o