2014年3月23日日曜日

開発環境

計算機プログラムの構造と解釈(Gerald Jay Sussman(原著)、Julie Sussman(原著)、Harold Abelson(原著)、和田 英一(翻訳)、ピアソンエデュケーション、原書: Structure and Interpretation of Computer Programs (MIT Electrical Engineering and Computer Science)(SICP))の2(データによる抽象の構築)、2.2(階層データ構造と閉包性)、2.2.2(階層構造)、問題 2.24.を解いてみる。

その他参考書籍

問題 2.24.

コード(BBEdit, Emacs)

sample.scm

#!/usr/bin/env gosh
;; -*- coding: utf-8 -*-

(print (list 1 (list 2 (list 3 4))))
;; 解釈系の印字する出力結果
;; (1 (2 (3 4)))

入出力結果(Terminal(gosh), REPL(Read, Eval, Print, Loop))

$ ./sample.scm
(1 (2 (3 4)))
$

構造。

木と解釈して見た図。

0 コメント:

コメントを投稿