Skip to content

Commit

Permalink
print result
Browse files Browse the repository at this point in the history
  • Loading branch information
neotheprogramist committed Feb 8, 2024
1 parent f491da9 commit 858f4e1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion runner/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ fn main() -> anyhow::Result<()> {
stdin().read_to_string(&mut input)?;
let exprs = parse(input)?.to_string();

run(exprs, args.target)?;
let result = run(exprs, args.target)?;
println!("{result:?}");

Ok(())
}
Expand Down

0 comments on commit 858f4e1

Please sign in to comment.