2011-01-12 61 views
3

有人能提供我一个CLISP脚本的简单expample,使用CGI与CLISP和CL-WHO的例子?

  • CGI
  • 在/ usr/local/bin目录/ CLISP
  • CL-WHO或等同?

我的安装包含apache2,clisp和quicklisp。

在此先感谢!

回答

1

Quicklisp是一个不错的选择。那么,如果使用clisp,sbcl或ccl作为实现,则无关紧要。在壳

运行此:

wget http://beta.quicklisp.org/quicklisp.lisp 
clisp 

运行此在Lisp中:

(load "quicklisp.lisp") 
(quicklisp-quickstart:install) 
(ql:add-to-init-file) 
(ql:quickload "cl-who") 
(defpackage :webmaker 
    (:use :cl :cl-who)) 
(in-package :webmaker) 
(with-html-output (*standard-output* nil :prologue t) 
    (:html (:body "Not much there")) 
    (values)) 

输出:

[...] 
;; Loaded file /home/xxx/quicklisp/setup.lisp 
;; Loaded file /home/xxx/.clisprc.lisp 
[1]> (ql:quickload "cl-who") 
To load "cl-who": 
    Load 1 ASDF system: 
    cl-who 
; Loading "cl-who" 

("cl-who") 
[2]> (defpackage :webmaker 
    (:use :cl :cl-who)) 
#<PACKAGE WEBMAKER> 
[3]> (in-package :webmaker) 
#<PACKAGE WEBMAKER> 
WEBMAKER[4]> 
(with-html-output (*standard-output* nil :prologue t) 
    (:html (:body "Not much there")) 
    (values)) 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 
<html><body>Not much there</body></html>