#!bin/picolisp lib.l (load "ext.l" "lib/http.l" "lib/xhtml.l" "lib/form.l") (de p1 () (app) (html 0 "First Page" "lib.css" NIL (<post> NIL "@p2" (<field> 20 '*Said) (<submit> "OK") ) ) ) (de p2 () (html 0 "Second Page" "lib.css" NIL (<href> "Click here" "@p3") ) ) (de p3 () (html 0 "Third Page" "lib.css" NIL "you said: " *Said ) ) (server 8080 "@p1")
-----