10 个版本
0.1.9 | 2024 年 3 月 17 日 |
---|---|
0.1.8 | 2024 年 3 月 17 日 |
#4 in #py
4KB
73 行
#yugen
像 Python 一样编写 Rust
##示例代码
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);
}
}