Ruby Examples
This commit is contained in:
12
level4/38.rb
Executable file
12
level4/38.rb
Executable file
@@ -0,0 +1,12 @@
|
||||
#!/usr/bin/ruby
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
=begin
|
||||
해시 키 목록만 배열로 추출
|
||||
=end
|
||||
|
||||
person = { name: "Charlie", score: 13 }
|
||||
|
||||
keys = person.keys
|
||||
|
||||
puts keys
|
||||
Reference in New Issue
Block a user