Skip to content

Instantly share code, notes, and snippets.

@katsyoshi
Last active April 14, 2016 10:56
Show Gist options
  • Select an option

  • Save katsyoshi/05fa03fcbd77af57d1785d85e41485c9 to your computer and use it in GitHub Desktop.

Select an option

Save katsyoshi/05fa03fcbd77af57d1785d85e41485c9 to your computer and use it in GitHub Desktop.
require 'thread'
kurara = false
haiji = 'クララカタタナイ゙'
thread = Thread.new do
loop do |t|
if 10 == rand(11)
kurara = true
haiji = 'クララガタッタ'
raise 'ジシィガシンダ゙'
end
end
end
sleep 1 until kurara
thread.kill
puts haiji
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment