You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
274 B
Dart

1 year ago
import 'dart:html';
import 'dart:io' as io;
void main(final List<String> arguments) async {
if (arguments.isEmpty) {
io.stderr.writeln('error: provide path for last id file');
return;
}
final List<String> lines = await io.File(arguments[0]).readAsLines();
}