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