學無止盡
my @array = qw{first second third}; push @array, 'fourth'; print $#array; # 這裡印出來的是3,表示'fortuh'已經被放入陣列 pop @array; print $#array; # 至於pop,則是把元素從陣列中取出
perl | pop | push
JohnChen
JohnChen.twm@gmail.com