Hi. I implemented my [string literals](<https://yo...
# kontributors
c
Hi. I implemented my [string literals](https://youtrack.jetbrains.com/issue/KT-2425#focus=Comments-27-4618773.0-0) proposition, here is [the github visual diff](https://github.com/JetBrains/kotlin/compare/master...arkanovicz:raw_strings). In a nutshell it enables raw strings and multine raw strings containing $ chars, by just using single quotes: '$foo', '''$bar'''. For one character long strings, you still have to use double quotes of course. I ran the following tests:
Copy code
./gradlew :compiler:test --tests "org.jetbrains.kotlin.lexer.kotlin.KotlinLexerTestGenerated*" --tests "org.jetbrains.kotlin.parsing.ParsingTestGenerated*" --tests "org.jetbrains.kotlin.test.runners.DiagnosticTestGenerated*" --tests "org.jetbrains.kotlin.test.runners.codegen.BlackBoxCodegenTestGenerated"
and since the modification, as expected, is backward compatible, all went fine. I really hope that the community will consider it, instead of introducing some weird syntax.