;;;; -*- mode:Lisp; syntax:Common-Lisp; package:user -*- ;;;;
;;;; Copyright 1992 Patrick H. Winston.  All rights reserved.
;;;; Version 1.1.1, copied from master file on 23 Apr 93       
;;;; 
;;;; This software is licensed by Patrick H. Winston (licensor) for
;;;; instructional use with the textbooks ``Artificial Intelligence,'' by
;;;; Patrick H. Winston, and ``Lisp,'' by Patrick H. Winston and Berthold
;;;; K. P. Horn.  Your are free to make copies of this software and
;;;; modify it for such instructional use as long as:
;;;; 1. You keep this notice intact.
;;;; 2. You cause any modified files to carry a prominent notice stating
;;;;    that you modified the files and the date of your modifications.
;;;; This software is licensed ``AS IS'' without warranty and the licensor
;;;; shall have no liability for any alleged defect or damages.

(db-define beach1
	   (hair	height	weight	lotion	result)
	   (blond	tall	light	no	t)
	   (blond	tall	average	yes	t)
	   (blond	short	average	no	nil)
	   (blond	short	light	yes	nil))

(db-define beach2
	   (hair	height	weight	lotion	result)
	   (red		tall	heavy	no	nil)
	   (brown	tall	heavy	no	nil))
