yugen 0.1.8

Writing rust like python
Documentation

#yugen

Writng rust like python

##examples_code:

use yugen::py_range;

fn main() { // Example 1: Iterate from 0 to 5 println!("Example 1:"); for a in py_range!(5) { println!("{}", a); }

// Example 2: Iterate from 0 to 5 
println!("Example 2:");
for b in py_range!(0, 5) {
    println!("{}", b);
}

// Example 3: Iterate from 0 to 5
println!("Example 3:");
for c in py_range!(0, 5, 1) {
    println!("{}", c);
}

}