Jacob Applin
fun dsl() { Column { Text("Hello") Image("<https://image>") Array(2) { Text("$it") } } } fun composition() { Column( Text("Hello"), Image("<https://image>"), *Array(2) { Text("Hello") } ) }