I've got a String template looking like this:
val template = "Something %s something else %s. The first was %1$s, the second was %2$s"
works fine with Java. How do I use this reoccurring String values with Kotlin?
Looks like %1$s is not possible.
Compiler warning: unresolved reference: s