16 lines
611 B
Scheme
16 lines
611 B
Scheme
(module info (lib "infotab.ss" "setup")
|
|
(require (lib "string-constant.ss" "string-constants"))
|
|
|
|
(define name "EoPL")
|
|
(define doc.txt "doc.txt")
|
|
(define tools (list "eopl-tool.ss"))
|
|
(define tool-icons (list "eopl-small.gif"))
|
|
(define tool-names (list "Essentials of Programming Languages"))
|
|
(define tool-urls (list "http://www.cs.indiana.edu/eopl/"))
|
|
|
|
(define textbook-pls
|
|
(list (list '("eopl-small.gif" "eopl")
|
|
"Essentials of Programming Languages"
|
|
(string-constant teaching-languages)
|
|
"Essentials of Programming Languages (2nd ed.)"))))
|