17 lines
640 B
Scheme
17 lines
640 B
Scheme
(module info (lib "infotab.ss" "setup")
|
|
(require (lib "string-constant.ss" "string-constants"))
|
|
|
|
(define name "HtDP Languages")
|
|
(define doc.txt "doc.txt")
|
|
(define tools (list "htdp-langs.ss"))
|
|
(define tool-icons (list '("htdp-icon.gif" "icons")))
|
|
(define tool-names (list "How to Design Programs"))
|
|
(define tool-urls (list "http://www.htdp.org/"))
|
|
|
|
(define textbook-pls
|
|
(list (list '("htdp-icon.gif" "icons")
|
|
"How to Design Programs"
|
|
(string-constant teaching-languages)
|
|
(string-constant how-to-design-programs)
|
|
(string-constant beginning-student)))))
|