10 lines
197 B
Scheme
10 lines
197 B
Scheme
;;; site/foo/bar.scm
|
|
|
|
;; Testing the Makefile's recursive abilities
|
|
|
|
(define title "Recursion Test")
|
|
(define author "~me")
|
|
|
|
`(,@(import "header.scm")
|
|
(p "Oh yeah.")
|
|
(p "Recursion moment! xD"))
|