如何使这个语句循环多次

时间:2014-10-30 02:50:48

标签: ruby

如何将此语句运行26次

player_a.add_to_top(orig_deck.deal)

1 个答案:

答案 0 :(得分:2)

使用Integer#times

26.times {player_a.add_to_top(orig_deck.deal)}