For https://www.programming-idioms.org/idiom/48/multi-line-string-literal/4327/dart
-
-
Save Deleplace/41e977065e53d3fe14a8a0b62938806c to your computer and use it in GitHub Desktop.
Multi-line string literal
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void main() { | |
var s = """A | |
multi-line | |
string"""; | |
print(s); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment