March 2014 update

This commit is contained in:
Ingy döt Net 2014-04-02 16:56:35 +00:00
parent 09687c4926
commit a25938f123
1846 changed files with 21876 additions and 5203 deletions

View file

@ -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

View file

@ -0,0 +1,3 @@
for i from 1 to 6 by 2 do
i;
end do;

View file

@ -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?!");
}