Skip to content

Instantly share code, notes, and snippets.

@Kalvin126
Last active August 3, 2019 00:40
Show Gist options
  • Save Kalvin126/65eaf3ff836f5aeaf44db8319416d91b to your computer and use it in GitHub Desktop.
Save Kalvin126/65eaf3ff836f5aeaf44db8319416d91b to your computer and use it in GitHub Desktop.
final class Thing {
var some: String
var someInt: Int
init(builder: (Thing) -> Void) {
builder(self)
}
}
Thing {
$0.some = "Some String"
$0.someInt = 4
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment