Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- fn main() {
- for i in (1..).filter(|x| x % 2 == 1).take(5) {
- println!("{}", i);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement