Stop show with sound  Next slide in show -- Keyboard shortcut: 'n'  27 secondsLecture 4 - slide 27 : 34
Program 2
(define (single-tag name attributes)
 (start-tag name attributes))

(define (double-tag name contents attributes)
 (string-append (start-tag name attributes)
                (as-string contents)
                (end-tag name)))