RubyInline面白い!特徴としては CのコードをRubyへシンプルに埋め込む コンパイルは不要(裏でやってくれる) コンパイル結果はキャッシュする インストールはGemから ていう感じ。とりあえず10000回加算でも試してみる、まずgemからインストール gem install RubyInline いつも通り完了、で使ってみる require "rubygems" require "inline" class Test inline do |builder| builder.c <<-EOF int plus_inline(int x, int y){ int z=0; int a; for(a=0; a<y; a++){ z = z + x; } return z; } EOF end def plus_ruby(x,y) z = 0 y.times{ z += x } ret