Logo

Programming-Idioms

  • Perl
  • C#
  • Scheme
  • Python
  • Smalltalk

Idiom #134 Create a new list

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

items := {a . b . c}.
my @items = ($a, $b, $c);
T[] items = new T[] { a, b, c };

items is an array with elements of type T
using System.Collections.Generic;
var items = new List<T>{a,b,c};

T is the type of the elements
(define items (list a b c))
items = list((a, b, c))
items = [a, b, c]
(def items (list a b c))

New implementation...