Last active
February 25, 2019 10:02
-
-
Save Erinziyi/5c4f59d73488bda18484c62600874b89 to your computer and use it in GitHub Desktop.
String Dart
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
| main() { | |
| String first = 'erin'; | |
| String second = "This is erin"; | |
| String third = 'This is erin dart'; | |
| String multiline = ''' | |
| This is a multiline | |
| String in dart | |
| as you can see. | |
| '''; | |
| print(multiline); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment