功夫不负有心人
//
// main.swift
// Ultimate
//
// Created by Mewlan Musajan on 4/23/21.
//
//Excerpt From: Apple Inc. “The Swift Programming Language (Swift 5.3).” Apple Books. https://books.apple.com/us/book/the-swift-programming-language-swift-5-3/id881256329struct IntStack {var items = [Int]()mutating func push(_ item: Int) {items.append(item)}@discardableResultmutating func pop() -> Int {return items.removeLast()}
}var someIntStack = IntStack()
someIntStack.items = [1, 2, 3, 4]
someIntStack.pop()
print(someIntStack.items)
?
總結
- 上一篇: 一个字符都懒得多写
- 下一篇: It feels great to kn