8 lines
91 B
Dart
8 lines
91 B
Dart
import 'dart:io';
|
|
|
|
main(List<String> args) {
|
|
while (true) {
|
|
stdout.write('e');
|
|
}
|
|
}
|