RosettaCodeData/Task/History-variables/Swift/history-variables-1.swift
2023-07-01 13:44:08 -04:00

11 lines
179 B
Swift

var historyOfHistory = [Int]()
var history:Int = 0 {
willSet {
historyOfHistory.append(history)
}
}
history = 2
history = 3
history = 4
println(historyOfHistory)