From d0e3a6e77001e0017443946f34a8253cb60212e8 Mon Sep 17 00:00:00 2001 From: olivia Date: Thu, 26 Apr 2018 22:15:18 +0200 Subject: [PATCH] make return explicit --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 9adcf567..4459509c 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -5,7 +5,7 @@ mod about_variables { let two = 7; let three = 3; let result = (one + two) / three; - result + return result; } }