//! Illustrates how to make a single system from multiple functions running in sequence and sharing
//! their inputs and outputs.
use Result;
use *;
;
// this system produces a Result<usize> output by trying to parse the Message resource
// This system takes a Result<usize> input and either prints the parsed value or the error message
// Try changing the Message resource to something that isn't an integer. You should see the error
// message printed.