racket/collects/profj/installer.ss
Kathy Gray 3ac1230baa Adds -- base of support to include LinkedList and Iterators into profj
Commits -- Corrections to interface bugs, and package setup-plt errors

svn: r6482
2007-06-05 15:26:06 +00:00

14 lines
511 B
Scheme

(module installer mzscheme
(require (prefix lang: (lib "installer.ss" "profj" "libs" "java" "lang"))
(prefix io: (lib "installer.ss" "profj" "libs" "java" "io"))
(prefix test: (lib "installer.ss" "profj" "libs" "java" "tester"))
(prefix util: (lib "installer.ss" "profj" "libs" "java" "util"))
)
(provide installer)
(define (installer plthome)
(io:installer plthome)
(lang:installer plthome)
(test:installer plthome)
(util:installer plthome)))