2006-08-06 ハッシュにmethod_missingを定義 RUBY h = {"foo"=>"bar", "zoo"=>"baz"} def h.method_missing(name); self[name.to_s]; end h.foo #=> "bar"標準ライブラリでなんとかできそうな気はするけど…