9484ac8bdf
BUG= R=vsm@google.com Review-Url: https://codereview.chromium.org/2752163002 .
8 lines
144 B
Dart
Executable File
8 lines
144 B
Dart
Executable File
#!/usr/bin/env dart
|
|
|
|
void main(List<String> args) {
|
|
String name = args.join(' ');
|
|
if (name == '') name = 'world';
|
|
print('hello $name');
|
|
}
|