10 lines
163 B
Text
10 lines
163 B
Text
|
|
#[macro_use]
|
||
|
|
extern crate cfor;
|
||
|
|
|
||
|
|
fn main() {
|
||
|
|
cfor!(let mut i = 2; i <= 8; i+=2; {
|
||
|
|
println!("{}", i);
|
||
|
|
});
|
||
|
|
println!("Who do we appreciate?");
|
||
|
|
}
|