Last active
April 14, 2016 10:56
-
-
Save katsyoshi/05fa03fcbd77af57d1785d85e41485c9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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