Hash from two arrays: Difference between revisions

No edit summary
Line 858:
=={{header|langur}}==
=== the easy way ===
<lang langur>writeln toHash ["w/a", "b", "c", "d"]/, [1, 2, 3, 4]</lang>
 
=== a longer way ===
Line 864:
f(.hash, .key, .value) .hash ~ h{.key: .value},
h{},
["w/a", "b", "c", "d"]/,
[1, 2, 3, 4],
)
885

edits