Logo

Programming-Idioms

History of Idiom 171 > diff from v20 to v21

Edit summary for version 21 by bigwavedave:
New Csharp implementation by user [bigwavedave]

Version 20

2019-09-30, 14:31:31

Version 21

2019-10-05, 00:15:37

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
Imports
using System.Collections.Generic;
Code
s.Add(x);