Character literals and string templates.

This commit is contained in:
Dmitry Petrov
2016-08-30 13:35:02 +03:00
committed by Dmitry Petrov
parent f83237498f
commit 86a52e6426
7 changed files with 76 additions and 18 deletions
@@ -0,0 +1,10 @@
fun foo(): String = ""
val test1 = ""
val test2 = "abc"
val test3 = """"""
val test4 = """abc"""
val test5 = """
abc
"""
val test6 = "$test1 ${foo()}"