Skip to content

Instantly share code, notes, and snippets.

View duzenko's full-sized avatar
💭
"Do you remember bluer screens, happy days and simpler times?" (C)

duzenko

💭
"Do you remember bluer screens, happy days and simpler times?" (C)
View GitHub Profile
@aruld
aruld / multiline.dart
Created October 19, 2011 17:26
Dart String interpolation and multi-line Strings
main() {
var user = 'John Doe';
var message = """
$user!
Welcome to Programming Dart!
""";
print(message);
}