published: 29th of January 2021
Tuples are similar to lists except they store all their elements in a contiguous memory block. Tuples are defined with the curly braces {} .
# Define a tuple
tuple = {1, 2, 3}
https://elixir-lang.org/getting-started/basic-types.html
https://elixir-lang.org/crash-course.html#data-types
https://learning.oreilly.com/library/view/elixir-in-action/9781617295027/c02.xhtml