Last active
March 11, 2016 14:59
-
-
Save shunsugai/5c79e83af8e77d7c7ea8 to your computer and use it in GitHub Desktop.
This file contains 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
history = [] | |
while history != [0, 0, 0, 0, 1] do | |
n = rand(2) | |
history.push(n) | |
history.shift if history.size > 5 | |
puts n == 0 ? 'ズン' : 'ドコ' | |
end | |
puts 'キ・ヨ・シ!' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment