Programming languages usually give you many kinds of objects to work with, like numbers, strings and dictionaries. Raven kind-of only has one, called the “pack”:
raven> p = pack(3, 5, 7)
pack(3, 5, 7)
Packs are primitive tuples that we can build with the pack(...) function and index with part (which starts at zero).