Question: The code below compiles and executes without issue, but is not idiomatic kotlin. What is a better way to impelement the `printlln()`?
- Use `new printf()`.
- Use `string.format` instead.
- Use `string append` instead.
- Use string templates instead.
Answer: The correct answer of the above question is Option D:Use string templates instead.