1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2025-09-11 23:11:21 +02:00
Files
programming-challenges/templates/solution/dart/solution.dart

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!');
}