calloop-subproc 1.0.0

Subprocess support for the Calloop event loop
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Test binary for `calloop_subproc` package. It will print the following lines
//! to stdout with no delay in between:
//!
//!     1 (one)
//!     2 (two)
//!     3 (three)
//!
//! Then it will exit.

fn main() {
    println!("1 (one)");
    println!("2 (two)");
    println!("3 (three)");
}