Hey how can I control string.format in Kotlin? `p...
# announcements
m
Hey how can I control string.format in Kotlin?
println(String.format("%3\$s %2\$s %1\$s", "0", "1", “2”))
it works but do I have to escape
$
everytime?