Logo

Programming-Idioms

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

Idiom #134 Create a new list

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

items := []T{a, b, c}

This creates a slice of type T.
(def items (list a b c))

New implementation...