ぱたへね

はてなダイアリーはrustの色分けができないのでこっちに来た

2013-06-25から1日間の記事一覧

Lisp in Small Pieces 1.8 Starting the Interpreter

これもよく見る形ですね。 (define (chapter1-scheme) (define (toplevel) (display (evaluate (read) env.global)) (toplevel) ) (toplevel) )

Lisp in Small Pieces 1.7 Global Environment

初期値やデフォルトで使える関数を、Global environment に追加するマクロ (define env.global env.init) (define-syntax definitial (syntax-rules () ((definitial name) (begin (set! env.global (cons (cons 'name 'void) env.global)) 'name ) ) ((defi…