var values = [1, 2, 3, 4, 5] var value: Int? { values.popLast() } while let value { print(value) }