2014年9月24日水曜日

開発環境

計算機プログラムの構造と解釈[第2版](ハロルド エイブルソン (著)、ジュリー サスマン (著)、ジェラルド・ジェイ サスマン (著)、Harold Abelson (原著)、Julie Sussman (原著)、Gerald Jay Sussman (原著)、和田 英一 (翻訳)、翔泳社、原書: Structure and Interpretation of Computer Programs (MIT Electrical Engineering and Computer Science)(SICP))の4(超言語的抽象)、4.1(超循環評価器)、4.1.7(構文解析を実行から分離する)、問題 4.22.を解いてみる。

その他参考書籍

問題 4.22.

コード(BBEdit, Emacs)

sample22.scm

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

(define (analyze exp)
  (cond ((self-evaluating? exp)
         (analyze-self-evaluating exp))
        ((quoted? exp) (analyze-quoted exp))
        ((variable? exp) (anlyze-variable exp))
        ((assignment? exp) (analyze-assignment exp))
        ((definition? exp) (anlyze-definition exp))
        ((if? exp) (anlyze-if exp))
        ((lambda? exp) (analyze-lambda exp))
        ((begin? exp) (anlyze-sequence (begin-actions exp)))
        ((cond? exp) (analyze (cond->if exp)))
        ;; 問題 4.22 特殊形式let
        ((let? exp) (analyze (let->combination exp)))
        ((application? exp) (analyze-application exp))
        (else
         (error "Unknown expression type -- ANALYZE" exp))))

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

$ ./sample22.scm
$

0 コメント:

コメントを投稿