#Kotlin https://kotlinlang.org/docs/basic-types.html#string-templates 以下のように文字列の中で変数展開できる[[Kotlin]]の書き方。 ```kotlin val i = 10 println("i = $i") ```