diff options
Diffstat (limited to 'example/posts/foo.sxml')
-rw-r--r-- | example/posts/foo.sxml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/example/posts/foo.sxml b/example/posts/foo.sxml index 4edde18..d49d420 100644 --- a/example/posts/foo.sxml +++ b/example/posts/foo.sxml @@ -1,3 +1,5 @@ +;;; -*- scheme -*- + (use-modules (srfi srfi-41) (haunt utils)) @@ -19,4 +21,6 @@ posts. Here are the first " " fibonacci numbers, computed with SRFI-41!") (pre ,(object->string (stream->list - (stream-take count fib))))))) + (stream-take count fib)))) + (p "Guile Scheme is great, eh?") + (img (@ (src "/images/guile-banner.small.png")))))) |