Logo

Programming-Idioms

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

Idiom #260 Create an empty list of strings

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

var items []string

items is nil, which is idiomatic for an empty slice
(def items '())

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