Computer Science 3021 --- Fall 1999
Introduction to Computer Programming
(define (irand-list n x)
(if (zero? n) empty
(let*
((new-x (+ x (+ 1 (random 100)))))
(cons new-x (irand-list (- n 1) new-x)))))
Instructor
Michael Siff
Office: 213 Science Center
Office hours: By appointment
Phone: 395-2490
E-mail: msiff@mail.slc.edu