21 02 2011 Ruby javascript Tweet
そういえば去年の最終Haskell読書会で、だれかと恋するプログラムの本の話になってYahooの日本語形態素解析API使えば出来んじゃないか?という思考に至ったので、気の向いたときにやっていくことにした。
3-3
function Responder(name) { this.name = name; this.response = function (input) { return input + "ってなに?" }; } function Unmo(name) { this.name = name; this.responder = new Responder('What'); this.dialogue = function (input) { return this.responder.response(input); }; this.responder_name = function () { return this.responder.name; }; } var u = new Unmo('proto'); var input = "あれ"; console.log(u.dialogue(input));
復刊リクエストも動いているようなので復刊されるといいですね。