RosettaCodeData/Task/History-variables/Swift/history-variables-1.swift
2016-12-05 23:44:36 +01: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)