Skip to content

Instantly share code, notes, and snippets.

@ybenjo
Created June 26, 2012 14:17
Show Gist options
  • Save ybenjo/2996025 to your computer and use it in GitHub Desktop.
Save ybenjo/2996025 to your computer and use it in GitHub Desktop.
rubyバインディングすぐ落ちる
# -*- coding: utf-8 -*-
require "kconv"
io = IO.popen("mecab", "r+")
io.puts "吾輩は猫である"
io.each{|e|
puts e
break if e.chomp == "EOS"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment