Logo

Programming-Idioms

History of Idiom 171 > diff from v34 to v35

Edit summary for version 35 by programming-idioms:
Admin deletes impl 2726: Dupe of impl 2393

Version 34

2020-07-20, 08:57:14

Version 35

2020-09-30, 08:57:49

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.

Variables
x,s
Variables
x,s
Extra Keywords
push grow
Extra Keywords
push grow
Code
$s[] = $x;