Logo

Programming-Idioms

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

Idiom #260 Create an empty list of strings

Declare a new list items of string elements, containing zero elements

my @items;
# or
my @items = ();

In Perl this is as close as you are going to get. "A list is a fixed collection of scalars. An array is a variable that holds a variable collection of scalars."
(def items '())

New implementation...
< >
programming-idioms.org