Is there a way to make this possible in Kotlin

val a = 111 val b = "test string" val c = 0.15 println(a, b, c, b.length) // Want output: "a=111,b=test string,c=0.15,b.length=11" 

submitted by /u/IllTryToReadComments
[link] [comments]