Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
EclecticGriffin committed Jul 15, 2024
1 parent 42d9766 commit cff1cfc
Showing 1 changed file with 0 additions and 25 deletions.
25 changes: 0 additions & 25 deletions interp/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -87,31 +87,6 @@ struct CommandInterpret {}
/// Open the program in the interactive debugger
struct CommandDebug {}

// #[inline]
// fn print_res(
// res: InterpreterResult<InterpreterState>,
// raw: bool,
// ) -> InterpreterResult<()> {
// match res {
// Ok(env) => {
// if raw {
// env.print_env_raw()
// } else {
// env.print_env()
// };
// Ok(())
// }
// Err(e) => match *e {
// InterpreterError::Exit
// | InterpreterError::ReadlineError(ReadlineError::Eof) => {
// println!("Exiting.");
// Ok(())
// }
// _ => Err(e),
// },
// }
// }

/// Interpret a group from a Calyx program
fn main() -> InterpreterResult<()> {
let opts: Opts = argh::from_env();
Expand Down

0 comments on commit cff1cfc

Please sign in to comment.