zachinglis (owner)

Revisions

gist: 88904 Download_button fork
public
Public Clone URL: git://gist.github.com/88904.git
Embed All Files: show embed
Text only #
1
2
3
4
5
6
7
8
9
10
11
>> a
=> ["joe", "pass"]
>> h = {}
=> {}
>> a.each_with_index do |b, i|
?> h[i] = b
>> end
=> ["joe", "pass"]
>> h
=> {0=>"joe", 1=>"pass"}