RosettaCodeData/Task/Hash-from-two-arrays/00DESCRIPTION

15 lines
385 B
Text
Raw Permalink Normal View History

2015-02-20 00:35:01 -05:00
{{omit from|BASIC}} <!-- Does not have hash tables or other map structures. -->
{{omit from|PowerBASIC}}
{{omit from|TI-83 BASIC}}
{{omit from|TI-89 BASIC}}
2016-12-05 22:15:40 +01:00
;Task:
2015-02-20 00:35:01 -05:00
Using two Arrays of equal length, create a Hash object
where the elements from one array (the keys) are linked
to the elements of the other (the values)
2013-04-10 21:29:02 -07:00
2016-12-05 22:15:40 +01:00
;Related task:
* &nbsp; [[Associative arrays/Creation]]
<br><br>