Logo

Programming-Idioms

  • Python
  • Rust

Idiom #134 Create a new list

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

let items = vec![a, b, c];
items = list((a, b, c))
items = [a, b, c]
(def items (list a b c))

New implementation...