forked from AbleScript/ablescript
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:
parent
f02b33d564
commit
c35f3d80ff
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue