Function dump_routine
Source pub fn dump_routine(buffer: &mut dyn Write, routine: &Routine) -> Result<()>
Expand description
18fn main() -> Result<()> {
19 let mut argv = env::args();
20 let routine = Routine::from_path(argv.nth(1).unwrap())?;
21 dump_routine(&mut std::io::stdout(), &routine).unwrap();
22 Ok(())
23}