Logo

Programming-Idioms

History of Idiom 171 > diff from v7 to v8

Edit summary for version 8 by programming-idioms.org:
[D] typo

Version 7

2018-09-21, 13:05:07

Version 8

2018-09-22, 15:17:13

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
s ~= x;
Code
s ~= x;
Comments bubble
s is a builtin array, which suport the cat assign operator
Comments bubble
s is a builtin array, which supports the cat assign operator