Logo

Programming-Idioms

History of Idiom 171 > diff from v16 to v17

Edit summary for version 17 by daxim:
New Perl implementation by user [daxim]

Version 16

2019-09-27, 08:39:49

Version 17

2019-09-27, 20:54:06

Idiom #171 Add an element at the end of a list

Append element x to the list s.

Idiom #171 Add an element at the end of a list

Append element x to the list s.

Extra Keywords
push grow
Extra Keywords
push grow
Code
push @s, $x;
Doc URL
http://p3rl.org/push