-
Notifications
You must be signed in to change notification settings - Fork 0
lang.Str
x768 edited this page Jan 20, 2018
·
1 revision
Represents an UTF-8 string.
Constructs default value "".
Converts obj to Str.
size:Int
Returns string length in Unicode codepoint.
Repeats string.
puts "abc" * 3 // abcabcabc
Returns a character at specified index.
puts "abcde"[2] // b