mirror of
https://github.com/google/comprehensive-rust.git
synced 2025-03-19 06:07:53 +02:00
Add main
method to code snippet (#2630)
The code snippet wouldn't compile/run directly because of a missing `main` method. Also remove unnecessary `&`.
This commit is contained in:
parent
af6dff53c2
commit
c05f0b6f02
@ -9,12 +9,14 @@ In addition to the `next` method that defines how an iterator behaves, the
|
||||
customized iterators.
|
||||
|
||||
```rust,editable
|
||||
fn main() {
|
||||
let result: i32 = (1..=10) // Create a range from 1 to 10
|
||||
.filter(|&x| x % 2 == 0) // Keep only even numbers
|
||||
.filter(|x| x % 2 == 0) // Keep only even numbers
|
||||
.map(|x| x * x) // Square each number
|
||||
.sum(); // Sum up all the squared numbers
|
||||
|
||||
println!("The sum of squares of even numbers from 1 to 10 is: {}", result);
|
||||
}
|
||||
```
|
||||
|
||||
<details>
|
||||
|
Loading…
x
Reference in New Issue
Block a user