March 2014 update
This commit is contained in:
parent
09687c4926
commit
a25938f123
1846 changed files with 21876 additions and 5203 deletions
|
|
@ -0,0 +1,4 @@
|
|||
i:8
|
||||
_8 _7 _6 _5 _4 _3 _2 _1 0 1 2 3 4 5 6 7 8
|
||||
i:8j8
|
||||
_8 _6 _4 _2 0 2 4 6 8
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
for i from 1 to 6 by 2 do
|
||||
i;
|
||||
end do;
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
use std::iter::range_step_inclusive;
|
||||
|
||||
fn main() {
|
||||
for i in range_step_inclusive(2, 8, 2) {
|
||||
print!("{:d}, ", i);
|
||||
}
|
||||
println("who do we appreciate?!");
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue