Store multiple values together by using a container type. Verse has a number of container types to store values in.
Option
The option type can contain one value or can be empty.
Range
The range expression contains all the numbers in a specified range, and can only be used in specific expressions.
Array
An array is a container where you can store elements of the same type, and access the elements by their position in the array.
Map
A map is a container where you can store values associated with other values, called key-value pairs, and access the elements by their unique keys.
Tuple
A tuple is a container where you can group two or more expressions of mixed types and access the elements in the tuple by their position.