Skip to content

Instantly share code, notes, and snippets.

@f3ath
Created April 5, 2019 22:54
Show Gist options
  • Save f3ath/94c144fd7a87ef1b9528d82f0a8a556a to your computer and use it in GitHub Desktop.
Save f3ath/94c144fd7a87ef1b9528d82f0a8a556a to your computer and use it in GitHub Desktop.
import 'dart:async';
import 'dart:convert';
import 'dart:io';
main() => stdin
.transform(utf8.decoder)
.transform(LineSplitter())
.asyncExpand(
(_) => Stream.fromFuture(Future.delayed(Duration(seconds: 1), () => _)))
.listen((_) => print("> $_"));
@f3ath
Copy link
Author

f3ath commented Apr 5, 2019

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment