Just came across this article which has some really wild claims about the new Observations in Swift 6.2:
```
import SwiftObservations // new in 6.2
@Observable
class Counter {
var value = 0
}
let counter = Counter()
Task {
for await tick in counter.$value { // β AsyncSequence<Int>
print("π", tick)
}
}
counter.value = 1 // prints π 1
counter.value = 2 // prints π 2
```
Wut, really??? This is too good to be true.
https://medium.com/@melissazm/stream-of-truth-meet-swift-6-2s-observations-library-22f1720211a6