()
| 13 | use std::io; |
| 14 | |
| 15 | fn main() -> io::Result<()> { |
| 16 | let order = arg_parser::parse_args(); |
| 17 | let output_folder_path = puzzle::assemble(order.clone()); |
| 18 | compiler::compile(&output_folder_path); |
| 19 | |
| 20 | tools::process_output(&order, &output_folder_path)?; |
| 21 | tools::rename_source_binary(&order, &output_folder_path)?; |
| 22 | |
| 23 | Ok(()) |
| 24 | } |
nothing calls this directly
no test coverage detected