<Use multiple variables in single string interpola...
# stackoverflow
u
Use multiple variables in single string interpolation kotlin

https://i.stack.imgur.com/mUEwB.png

How should can I use multiple var in single ${} fun main() { var a = 5 var b = 20 if (b % a == 0 && b > a++) print("statement 1st - ${a--, --b}") if (a % 5 == 0 || a >= b++) print("statement 2nd - ${a--, --b}") }