Logo

Programming-Idioms

  • Fortran
  • JS
  • Perl

Idiom #134 Create a new list

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

my @items = ($a, $b, $c);
integer, dimension(3) :: items
items = [a,b,c]
const items = [a, b, c];
const items = new Array(a, b, c);

This works fine, but read the doc carefully!
(def items (list a b c))

New implementation...