2015年2月21日土曜日

開発環境

計算機プログラムの構造と解釈[第2版](ハロルド エイブルソン (著)、ジュリー サスマン (著)、ジェラルド・ジェイ サスマン (著)、Harold Abelson (原著)、Julie Sussman (原著)、Gerald Jay Sussman (原著)、和田 英一 (翻訳)、翔泳社、原書: Structure and Interpretation of Computer Programs (MIT Electrical Engineering and Computer Science)(SICP))の1(手続きによる抽象の構築)、1.3(高階手続きによる抽象)、1.3.2(lambdaを使う手続きの構築)、問題 1.34.を解いてみる。

その他参考書籍

問題 1.34.

コード(BBEdit, Emacs)

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

(define (f g) (g 2))

(print (f (lambda (x) (* x x))))        ; 4
(print (f (lambda (z) (* z (+ z 1)))))  ; 6

;; (f f)
;; (f 2)
;; (2 2)                                   ; エラー
(f f)

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

$ ./sample34.scm 
4
6
gosh: "error": invalid application: (2 2)
$

0 コメント:

コメントを投稿