元組

元組是其他 Erlang 項的固定長度有序序列。元組中的每個元素可以是任何型別的術語(任何資料型別)。

1> {1, 2, 3}.
{1,2,3}
2> {one, two, three}.
{one,two,three}
3> {mix, atom, 123, {<<1,2>>, [list]}}.
{mix,atom,123,{<<1,2>>,[list]}}