11 lines
197 B
Scheme
11 lines
197 B
Scheme
|
(define-structure surflet surflet-interface
|
||
|
(open surflets
|
||
|
scheme-with-scsh)
|
||
|
(begin
|
||
|
|
||
|
(define (main req)
|
||
|
(send-html/finish
|
||
|
'(html (body (h1 "Hello, world!")))))
|
||
|
))
|
||
|
|