<@U1H2QGNDC> no way, one does not need `invoke` f...
# getting-started
v
@bamdmux no way, one does not need
invoke
for that:
Copy code
object label {
    infix fun inside(box: Box) {}
}

class Box {
    var background  = 0
}


fun box(block: Box.() -> Unit) = Box()

val red = 100

fun main(args: Array<String>) {
    label inside box {
        background = red
    }
}