SchemeFiles

The programming assignments from COEN 266 - Artificial Intelligence course. Used guile interpreter on linux machine to execute the programs.

Using The Guile Interpreter

$ ssh myname@linux.dc.engr.scu.edu

[myname@linux60820 ~]$ guile

guile>

Add the following lines to your ~/.guile file to enable the command history feature:

(use-modules (ice-9 readline))

(activate-readline)

To exit the interpreter, press Ctrl+D

Online Reference The Scheme Programming Language, 4th Edition http://www.scheme.com/tspl4/

Guile reference (includes a nice Scheme overview, too): http://www.gnu.org/software/guile/manual/guile.pdf