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