Skip to content

Instantly share code, notes, and snippets.

@f3ath
Last active April 5, 2019 22:18
Show Gist options
  • Save f3ath/cf121e4c79eeffb81f4ded03d1892015 to your computer and use it in GitHub Desktop.
Save f3ath/cf121e4c79eeffb81f4ded03d1892015 to your computer and use it in GitHub Desktop.
import 'dart:convert';
import 'dart:io';
import 'package:rxdart/rxdart.dart';
void main() => stdin
.transform(utf8.decoder)
.transform(LineSplitter())
.transform(IntervalStreamTransformer(Duration(seconds: 1)))
.listen((_) => print("> $_"));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment