1 2 3 4 5 6 7 8 9
//! # Main executable of pt //! //! This module contains all code specific to the executable version of `libpt`: `pt`. mod args; /// ## Main function of the `pt` binary pub fn main() { println!("hello world"); }