Stop show with sound  Next slide in show -- Keyboard shortcut: 'n'  36 secondsLecture 4 - slide 27 : 34
Program 3
(define (start-tag kind attributes)
  (if (null? attributes) 
      (string-append "<" kind ">")
      (let ((html-attributes (linearize-attributes attributes)))
         (string-append "<" kind " " html-attributes " >"))))

(define (end-tag kind)
  (string-append "</" kind ">"))