Files
ruby-examples-1/level5/49.rb
2026-01-15 14:01:21 +09:00

12 lines
155 B
Ruby
Executable File

#!/usr/bin/ruby
# -*- coding: utf-8 -*-
=begin
each_with_index 사용
=end
people = ["Charlie", "Steve", "Anne"]
h = people.each_with_index.to_h
puts h