Software Engineering Lecture 5/9

Software Engineering Lecture 5/9



集合や関数をコンピュータでどう扱えば良いか?



S-式は以下の要素からなる。


















LISP と 関数型プログラミング

関数を表すS-式、リスト式を処理する関数

これらは、LISP 1.5風のプログラムだ。 ... が、しかし、Common LISP は、CやPascalのようにプログラミング することもできる。

(defun program () 
   (progn
      (print 'a)
      (print 'b)
      (print 'c)))


GNU Common LISP (GCL) の使い方

Prev Next Kono's home page