I don't think I've ever wanted to split up my init...
# language-proposals
k
I don't think I've ever wanted to split up my init block like that. And if I did, I'd just do:
Copy code
class Foo {
  init {
    let {
      // one local scope
    }
    let {
      // another local scope
    }
  }
}