11 lines
419 B
Scheme
11 lines
419 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 util: (lib "installer.ss" "profj" "libs" "java" "util")))
|
|
(provide installer)
|
|
|
|
(define (installer plthome)
|
|
(io:installer plthome)
|
|
(lang:installer plthome)
|
|
; (io:installer plthome)
|
|
(util:installer plthome))) |