Welcome to the CHICKEN Scheme pasting service
MWE for awful empty response problem added by sECuRE on Sun Oct 21 17:18:59 2012
(use awful) (use regex) (define *groups* (make-hash-table)) (set! (hash-table-ref *groups* "foo") "bar") (define-page (regexp "/.*") (lambda (path) (let* ((group (hash-table-ref *groups* (substring path 1 (string-length path))))) `((h1 ,group)))))