(load (string-append laml-dir "laml.scm")) (laml-style "simple-xhtml1.0-transitional-validating") (define (www-document the-title . body-forms) (html (head (title the-title)) (body body-forms))) (www-document "This is the document title" (h1 "Document title") (p "Here is the first paragraph of the document") (p "The second paragraph has an" (em "emphasized item") "and a" (em "bold face item")_"."))