summary refs log tree commit diff stats
path: root/boudin.scm
blob: 7bd741de90e9ed3ea1a3fc293fc6be032d2e2e4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
;;; (boudin) --- A small tasty ssg

(import (boudin))

(define foo (render-string "#,hello from Boudin!"
                           (interaction-environment)))

(define (main . args)
  (print foo)
  (for-each print args))

(cond-expand
  (compiling (apply main (command-line)))
  (else))