summaryrefslogtreecommitdiff
path: root/rust-book/add/adder/src
diff options
context:
space:
mode:
Diffstat (limited to 'rust-book/add/adder/src')
-rwxr-xr-xrust-book/add/adder/src/main.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/rust-book/add/adder/src/main.rs b/rust-book/add/adder/src/main.rs
new file mode 100755
index 0000000..7099fb8
--- /dev/null
+++ b/rust-book/add/adder/src/main.rs
@@ -0,0 +1,6 @@
+use add_one;
+
+fn main() {
+ let num = 10;
+ println!("{}", add_one::add_one(num));
+}