(define piano (instrument 1)) (define (run n) (if (= n 0) 'fertig (begin (play piano (* n 10) 100) (run(- n 1)) ) ) ) (run 10);
ausführen