Scheme

The Little Schemer

The Little Schemer (The MIT Press)作者: Daniel P. Friedman,Matthias Felleisen出版社/メーカー: The MIT Press発売日: 1995/12/21メディア: ペーパーバック購入: 10人 クリック: 137回この商品を含むブログ (91件) を見るずっと前に買っていたのだが、今…

Inverting back the inversion of control or, Continuations versus page-centric programming, Christian Queinnec, (2)

いまさらですが、前回の続き。本題の、継続を使ってどのようにクライアントの状態を楽に保存するか、という話です。 本論文に書いてある簡単な例を見てみましょう。二つの値を入力させて、それらの和を求めるようなwebアプリケーションです。 (define n1 0) …

Inverting back the inversion of control or, Continuations versus page-centric programming, Christian Queinnec, (1)

継続(continuation)を用いてwebプログラミングをすると、これまでの開発手法よりも従来のアプリケーション開発に近いスタイルで行うことができるようになるよ、というお話。 そもそも、なんでwebアプリケーションの開発が面倒になるかというと、以下の様な理…