; the first two programs
(define (hello)
(display "Hello, world!")
(newline))
(define (temp-table)
(do ((f 0 (+ f 20))) ((< 300 f))
(display f)
(display #\tab)
(display (inexact->exact (round (* (- f 32) 5/9))))
(newline)))
(hello)
(newline)
(temp-table)