Hash from two arrays: Difference between revisions

m
Shorter D entry
(Shorter D entry)
m (Shorter D entry)
Line 381:
 
void main() {
auto hash = ["onea", "twob", "threec"].zip([1, 2, 3]).assocArray;
}</lang>