You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

config.scm 338B

123456789101112
  1. (module config *
  2. (import scheme)
  3. (import (chicken base))
  4. (define-record config posts-dir build-dir)
  5. (define (build-config args)
  6. (let* ([source-dir (car args)]
  7. [posts-dir (string-append source-dir "/posts")]
  8. [build-dir (string-append source-dir "/build")])
  9. (make-config posts-dir build-dir))))