Logo

Programming-Idioms

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

Idiom #260 Create an empty list of strings

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

character(len=:), allocatable, dimension(:) :: items
allocate (items(0),source="")

Note that all strings have the same length in an array.
(def items '())

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