From ef1bf4921ee4127d461eec03a14c9070d193345c Mon Sep 17 00:00:00 2001 From: Adam Carpenter Date: Mon, 11 Feb 2019 16:59:01 -0500 Subject: Init. --- functions/src/main.rs | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 functions/src/main.rs (limited to 'functions/src/main.rs') diff --git a/functions/src/main.rs b/functions/src/main.rs new file mode 100755 index 0000000..43284ff --- /dev/null +++ b/functions/src/main.rs @@ -0,0 +1,10 @@ +fn main() { + let x = plus_one(5); + + println!("The value of x is {}", x); +} + +fn plus_one(x: i32) -> i32 { + x + 1 +} + -- cgit v1.2.3