Hash from two arrays: Difference between revisions

add Maple example
(Updated D entry)
(add Maple example)
Line 654:
end
end
</lang>
 
=={{header|Maple}}==
<lang Maple>
A := [1, 2, 3];
B := ["one", "two", three"];
 
T := table( zip( `=`, A, B ) );
</lang>
 
Anonymous user