Path: utzoo!utgpu!jarvis.csri.toronto.edu!rutgers!apple!bloom-beacon!ai-lab!jba From: jba@wheaties.ai.mit.edu (Jonathan Amsterdam) Newsgroups: alt.sources Subject: AAL sources (1 of 8) Keywords: adventure,games Message-ID: <2910@wilde.ai.mit.edu> Date: 10 Jun 89 21:27:52 GMT Distribution: alt Organization: MIT AI Lab, Cambridge, MA Lines: 33 ;;; -*- Mode: LISP; Syntax: Common-lisp; Package: USER; Base: 10 -*- ;;; filename: aal ;;; AAL: The Adventure Authoring Language. Version 1.0. ;;; Copyright 1988 by Jonathan Amsterdam. All Rights Reserved. ;;; This is the main file for loading. Loading this file loads all of AAL, in ;;; the right order. ;;; Notes: ;;; There are several files; in addition to the six files of source code ;;; mentioned below, there is also sample.lisp, which contains a sample ;;; adventure. ;;; The copyright to this code is held by me, which means that if ;;; use it any purpose other than personal use, you must obtain my ;;; permission. ;;; This implementation of AAL is preliminary and has not been well-tested. ;;; There are probably many bugs. You are on your own in debugging. Good ;;; luck! (load "streams") (load "initial") (load "parser") (load "deducer") (load "interp") (load "comp") ;;; End aal.lisp.