RosettaCodeData/Task/Array-concatenation/Oz/array-concatenation.oz
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

5 lines
135 B
Text

%% concatenating 2 lists
{Append [a b] [c d]} = [a b c d]
%% concatenating 2 tuples
{Tuple.append t(1 2 3) u(4 5 6)} = u(1 2 3 4 5 6)