You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#lang racket/base
|
|
(provide (all-defined-out))
|
|
|
|
(define (post-installer home-dir)
|
|
(for ([mod '(hyphenate/us hyphenate/fr)])
|
|
(displayln (format "running post-installer in ~a" mod))
|
|
(define proc (dynamic-require mod 'post-installer))
|
|
(proc home-dir))) |