デッキを作成してシャッフルして、4人のプレイヤーに7枚のカードを渡そうとしました。このコードではカードをプレイヤーの手札に移動しよう
irb(main):097:0* deck.each do
irb(main):098:1* [email protected] << deck.pop()
irb(main):099:1> end
SyntaxError: (irb):98: syntax error, unexpected tIVAR, expecting '('
[email protected] << deck.pop()
^
:
次のエラーを取得
class Player
attr_accessor :hand
def initialize(hand)
@hand = hand
end
end
あなたはプレイヤーのクラスを追加することはできますか? –
[構文エラー、予期しないtIVAR、 '(')(https://stackoverflow.com/questions/21625992/syntax-error-unexpected-tivar-expecting)を期待しています –
あなたは '。@ hand 'クラス変数にアクセスするには –