yaotti's diary

Software is Eating the World

2008-04-14から1日間の記事一覧

Terminal内でCarbonEmacs

mac

nwオプションを付けて起動する。 /Application/Emacs/hogehoge/Emacs -nwこれでpartty.orgでEmacsのコーディングを保存できる。ただ、 Metaキーとしてcmdが使えない。 色が気持ち悪い これはなんとかしないと。

listとquoteの違い

(find (cut eq? '+ <>) (list '+ '- '* '/)) (find (cut eq? '+ <>) '('+ '- '* '/)) この2つ、挙動が違う。 上は+が返ってきて、下は#fが返る。 なんでかなーと思って調べたところ、 gosh>(list 'a 'b) (a b) gosh>'('a 'b) ('a 'b) quoteだと中身は評価さ…

逆ポーランド記法で計算

(define (re-polish args) (let1 operators (list '+ '- '* '/) (define (iter rest-args stack) (cond [(null? rest-args) (car stack)] [(number? (car rest-args)) (iter (cdr rest-args) (append stack (list (car rest-args))))] [(find (cut eq? (car …