mirror of
https://github.com/rust-lang/rustlings.git
synced 2025-12-11 23:27:23 +02:00
Just remembered another function one I wanted to do
This commit is contained in:
43
functions/functions5.rs
Normal file
43
functions/functions5.rs
Normal file
@@ -0,0 +1,43 @@
|
||||
// Make me compile! Scroll down for hints :)
|
||||
|
||||
fn main() {
|
||||
let answer = square(3);
|
||||
println!("The answer is {}", answer);
|
||||
}
|
||||
|
||||
fn square(num: i32) -> i32 {
|
||||
num * num;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// This is a really common error that can be fixed by removing one character.
|
||||
// It happens because Rust distinguishes between expressions and statements: expressions return
|
||||
// a value and statements don't. We want to return a value from the `square` function, but it
|
||||
// isn't returning one right now...
|
||||
Reference in New Issue
Block a user