;;;; -*- mode: scheme -*- ;;;;

; Note: this data file contains a DEFINE for simplicity; it would be
; better programming practice to read individual list elements with
; a data-specific reader

(define tents
  '((item	maker	color	size	material price)
    (I-730	REI	green	medium	gortex	  500)
    (I-827	EMS	blue    small   nylon	  300)
    (I-314	EMS	blue	small	nylon     320)
    (I-812	EMS	blue	large	nylon 	  150)
    (I-372	EMS	red	small	nylon	  300)
    (I-370	REI	green	medium	gortex	  300)
    (I-182	EMS	blue	small	nylon 	  150)
    (I-134	REI	red	small	nylon     320)
    (I-182	REI	red	large	gortex	  700)
    (I-732	EMS	blue	small	nylon	  300)
    (I-812	REI	green	medium	nylon	  500)
    (I-427	REI	red	medium	gortex	  500)
    (I-737	REI	red	small	nylon     500)
    (I-287	EMS	blue	small	nylon	  300)
    (I-247	EMS	blue	small   nylon	  530)
    (I-377	REI	red	medium	nylon     525)))






