Logo

Programming-Idioms

History of Idiom 171 > diff from v13 to v14

Edit summary for version 14 by oedemis:
New Java implementation by user [oedemis]

Version 13

2019-09-26, 14:24:45

Version 14

2019-09-26, 14:30:33

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
List;
ArrayList;
Code
List<String> stringList = new ArrayList<>();
stringList.add("hello")