コード:
my $compare = List::Compare->new(\@hand, \@new_hand);
print_cards("Discarded", $compare->get_Lonly()) if ($verbose);
print_cards
期待する (スカラー、配列への参照)。
get_Lonly
配列を返します。print_cards に渡すことができるように、それを参照に変換する構文は何ですか? \@{$compare->getLonly()}
たとえば、機能しません。
ありがとう!