Skip to content

Instantly share code, notes, and snippets.

@aruld
Created October 19, 2011 17:26
Show Gist options
  • Star 7 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aruld/1299014 to your computer and use it in GitHub Desktop.
Save aruld/1299014 to your computer and use it in GitHub Desktop.
Dart String interpolation and multi-line Strings
main() {
var user = 'John Doe';
var message = """
$user!
Welcome to Programming Dart!
""";
print(message);
}
@nixoncode
Copy link

neat

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment