diff options
Diffstat (limited to 'wikme.scm')
-rw-r--r-- | wikme.scm | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/wikme.scm b/wikme.scm index 10b1a1a..a8b4755 100644 --- a/wikme.scm +++ b/wikme.scm | |||
@@ -1,4 +1,9 @@ | |||
1 | (module wikme * | 1 | (import wikme |
2 | (import scheme | 2 | (scheme) |
3 | (chicken base)) | 3 | (chicken process-context)) |
4 | (include "wikme-impl.scm")) | 4 | |
5 | (define (main args) | ||
6 | (build-wiki "./test/" | ||
7 | destination: "./out/")) | ||
8 | |||
9 | (main (command-line-arguments)) | ||