Do I really have to write something like: ``` fun ...
# announcements
a
Do I really have to write something like:
Copy code
fun some() {
        val state: Int = -1
        synchronized(this) {
            state = this.state
        }
        print(state)
}