Files
programming-challenges/templates/solution/dart/solution.dart
T

12 lines
202 B
Dart

import 'dart:io';
String readLineSync() {
String? string = stdin.readLineSync();
return string == null ? '' : string;
}
void main() {
String input = readLineSync();
print('Hello, $input!');
}