Skip to content

1.1.0

@huonw huonw tagged this 14 Nov 11:24
```rust
cfor!{let mut x = 0, let mut y = 1; x < 4; x += 1, y *= 2; {
     println!("{} {}", x, y);
}}
```

Output:

```
0 1
1 2
2 4
3 8
```
Assets 2
Loading