Skip to content

Instantly share code, notes, and snippets.

@sh4869
Created December 20, 2014 13:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sh4869/cadbfe6207c9b2c564d0 to your computer and use it in GitHub Desktop.
Save sh4869/cadbfe6207c9b2c564d0 to your computer and use it in GitHub Desktop.
Juliusのモジュールモードを使うときの簡単なサンプル
require 'socket'
require 'thread'
client = TCPSocket.new('localhost',10500)
while line = client.gets
puts line
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment