(String[] args)
| 8 | |
| 9 | public class Echo { |
| 10 | public static void main(String[] args) { |
| 11 | TimedAbort abort = new TimedAbort(2); |
| 12 | new BufferedReader( |
| 13 | new InputStreamReader(System.in)) |
| 14 | .lines() |
| 15 | .peek(ln -> abort.restart()) |
| 16 | .forEach(System.out::println); |
| 17 | // Ctrl-Z or two seconds inactivity |
| 18 | // terminates the program |
| 19 | } |
| 20 | } |