1 2 3 4 5 6 7 8 9 10 11 12 13
// meadows-std.rs //! A minimal program using [`std`]. use std::io; use std::io::prelude::*; fn main() -> io::Result<()> { writeln!(io::stdout(), "This is meadows-std")?; Ok(()) } // EOF