Skip to content

Instantly share code, notes, and snippets.

@Yamabiko
Last active December 20, 2015 20:29
Show Gist options
  • Save Yamabiko/6191160 to your computer and use it in GitHub Desktop.
Save Yamabiko/6191160 to your computer and use it in GitHub Desktop.
# 名前は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