Skip to content

Instantly share code, notes, and snippets.

@fabiomsr
Created August 1, 2016 12:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fabiomsr/b8b9627db6d251dc57d8bbbe40fa578b to your computer and use it in GitHub Desktop.
Save fabiomsr/b8b9627db6d251dc57d8bbbe40fa578b to your computer and use it in GitHub Desktop.
// Java
String text = "First Line\n" +
"Second Line\n" +
"Third Line";
// Kotlin
val text = """
First Line
Second Line
Third Line
"""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment