blob: 80e5324e122e3ddb4aec77c61b53cdf1a2e23cdd [file] [log] [blame]
import 'dart:io';
void main(List<String> args) async {
final proc = await Process.start('', []);
proc.stdout. // we're typing here!
void writeMessage(String message) {}
}