add an arrow to indicate code output

This commit is contained in:
2024-10-24 13:51:23 -04:00
parent 8d82999925
commit 599e04682e

View File

@@ -5,8 +5,8 @@ fn main() {
for value in runtime.values() {
match value {
Ok(v) => println!("{v}"),
Err(e) => eprintln!("{e}"),
Ok(v) => println!("=> {v}"),
Err(e) => eprintln!("error: {e}"),
}
}
}