From 9873a3aafa3bfd206030345ae218d90098128c3a Mon Sep 17 00:00:00 2001 From: MagnusMG <45693302+MagnusMG@users.noreply.github.com> Date: Mon, 26 Apr 2021 10:06:08 +0200 Subject: [PATCH] Added caution block for variable interpolation in Kotlin. --- docs/index.adoc | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/index.adoc b/docs/index.adoc index 6b2500203..44770ced4 100644 --- a/docs/index.adoc +++ b/docs/index.adoc @@ -9752,6 +9752,7 @@ class Status { lateinit var directories: Array } ---- +CAUTION: In Kotlin, the dollar sign ($) has to be escaped with a backslash (\) in order to prevent Kotlin string interpolation to occur: `\${DEFAULT-VALUE}`. === Predefined Variables