4 lines
103 B
Swift
4 lines
103 B
Swift
|
|
var txt = "0123456789"
|
||
|
|
txt.removeAtIndex(txt.startIndex)
|
||
|
|
txt.removeAtIndex(txt.endIndex.predecessor())
|