Elixir Lists: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

3 December 2023

  • curprev 14:3414:34, 3 December 2023Elixirfan talk contribs 2,307 bytes +2,307 Created page with "== Elixir Lists == The Elixir programming language provides a powerful data structure known as a list. In Elixir, a list is an ordered collection of elements. Lists can contain elements of any data type, including numbers, strings, atoms, and even other lists. Lists in Elixir are immutable, which means they cannot be modified once created. Instead, operations on lists return new lists. === Creating Lists === To create a list in Elixir, we can use square brackets `[ ]`..."