зеркало из https://github.com/github/ruby.git
6 строки
219 B
Plaintext
6 строки
219 B
Plaintext
|
Returns an array of the characters in +self+:
|
||
|
|
||
|
'hello'.chars # => ["h", "e", "l", "l", "o"]
|
||
|
'тест'.chars # => ["т", "е", "с", "т"]
|
||
|
'こんにちは'.chars # => ["こ", "ん", "に", "ち", "は"]
|