Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!

Idiom #134 Create a new list

Declare and initialize a new list items, containing 3 elements a, b, c.

uses classes;
var
  Items: TList;
  a,b,c: pointer;
begin
  Items := TList.Create;
  Items.Add(a);
  Items.Add(b);
  Items.Add(c);
end.

Note that in the example a,b, and c don't hold any meaninfull data.
(def items (list a b c))

New implementation...