1 2 3 4 5 6 7 |
@allRecords = (); @record1 = ('a', 'b', 'c'); @record2 = ('1', '2', '3'); push (@allRecords, \@record1); push (@allRecords, \@record2); |
@allRecords は以下のようになる。
1 2 3 |
[ [ 'a', 'b', 'c'] , ['1', '2', '3'] ] |