1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-09-16 10:51:42 +02:00

make return explicit

This commit is contained in:
olivia 2018-04-26 22:15:18 +02:00
parent 7148233950
commit d0e3a6e770

View File

@ -5,7 +5,7 @@ mod about_variables {
let two = 7;
let three = 3;
let result = (one + two) / three;
result
return result;
}
}