Lisp语言入门

Lisp环境搭建

CLISP是byte code解释器,一般认为其可移植性比较好。
在mac的命令行下执行命令:

brew install clisp

成功后,输入clisp,输出:

  i i i i i i i       ooooo    o        ooooooo   ooooo   ooooo
  I I I I I I I      8     8   8           8     8     o  8    8
  I  \ `+' /  I      8         8           8     8        8    8
   \  `-+-'  /       8         8           8      ooooo   8oooo
    `-__|__-'        8         8           8           8  8
        |            8     o   8           8     o     8  8
  ------+------       ooooo    8oooooo  ooo8ooo   ooooo   8

Welcome to GNU CLISP 2.49 (2010-07-07) 

然后创建lisp文件,写一段简短的lisp代码:

>touch test.lisp
>vim test.lisp
>(print "hello lisp!")
#执行代码
>clip 
>(load "./test.lisp")
"hello lisp!"

退出clisp使用:

(exit)

你可能感兴趣的:(Lisp)