📄️ Introduction
The data types used in Dark Elixir programming language are as follows
📄️ Numeric Values
Numbers are either integers or floating point values in Dark Elixir
📄️ Strings
"Hello, World"
📄️ Atoms
Atom
📄️ Tuple
A Tuple is a fixed size container for multiple elements. A tuple is defined within curly braces and the elements are separated by commas.
📄️ List
Lists holds zero, one or more elements/values in order. A list is an enumerable data type
📄️ Map
Maps are the go to data structure for key - value pairs