rustfmt: whoops, let's put a semicolon there

maybe I should have actually looked at what rustfmt produced before I
just blindly accepted it and pushed it onto master.
This commit is contained in:
Alex Bethel 2021-06-15 10:26:44 -05:00
parent 7bf3cc6f5d
commit 8aa6fc502a

View file

@ -275,9 +275,11 @@ impl ExecEnv {
// here at some point. ~~Alex
exit(random());
}
StmtKind::Rickroll => stdout()
StmtKind::Rickroll => {
stdout()
.write_all(include_str!("rickroll").as_bytes())
.expect("Failed to write to stdout"),
.expect("Failed to write to stdout");
}
}
Ok(HaltStatus::Finished)