Go to the first, previous, next, last section, table of contents.

push

`push(ARRAY,LIST)'
ARRAY(@ は付けなくてよい)をスタックのように扱い、 LIST の値を ARRAY の最後に追加する。 ARRAY の長さは LIST の長さ分増える。
for $value (LIST) {
     $ARRAY[++$#ARRAY] = $value;
}
と同じ効果を持つが、より効率がよい。 See section pop.

Go to the first, previous, next, last section, table of contents.