Skip to content

Commit

Permalink
Create 0400-0002-004-For.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
companyakis authored Dec 5, 2024
1 parent 0595805 commit 787f9e6
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions 0400-0002-004-For.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
fn main() {

for a in -3..4 {

print!("{} ", a)
}

for b in 2..=10 {

print!("{} ", b)
}

}

// -3 -2 -1 0 1 2 3 2 3 4 5 6 7 8 9 10

0 comments on commit 787f9e6

Please sign in to comment.