I'm reading the source of a project, and found such code there:
private var _responded: Boolean = _ { _responded = false } I don't understand why he wrote it like this, isn't it the same as:
private var _responded = false What's the difference between them?