Question: The code below compiles and executes without issue, but is not idiomatic kotlin. What is a better way to impelement the `printlln()`?

  1. Use `new printf()`.
  2. Use `string.format` instead.
  3. Use `string append` instead.
  4. Use string templates instead.

Answer: The correct answer of the above question is Option D:Use string templates instead.