summaryrefslogtreecommitdiff
path: root/rust/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'rust/src/main.rs')
-rw-r--r--rust/src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/rust/src/main.rs b/rust/src/main.rs
index f401886..cf9477c 100644
--- a/rust/src/main.rs
+++ b/rust/src/main.rs
@@ -3,5 +3,5 @@ use std::env::args;
use lambda::run;
fn main() {
- run(&args().nth(1).unwrap());
+ println!("result: {}", run(&args().nth(1).unwrap()));
}