Last active
December 20, 2015 20:29
-
-
Save Yamabiko/6191160 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
# 名前は2次元配列で保持 | |
girls = [ ["Suzumiya","Haruhi"], | |
["Senjogahara","Hitagi"], | |
["Nanasaki","Ai"], | |
["Tsutsukakushi","Tsukiko"], | |
["Ayanami","Rei"] ] | |
# 乱数生成 | |
x = rand(5); y = rand(5) | |
# 結果表示 | |
puts girls[x][0] + " " + girls[y][1] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment