TimelyDataflow / timely-dataflow

A modular implementation of timely dataflow in Rust
MIT License
3.25k stars 272 forks source link

Fix ranges in chapter 2 of mdbook #503

Open def- opened 1 year ago

def- commented 1 year ago

Ranges with 0..9 have exclusive upper bounds in Rust, 0..=9 would be inclusive.

The following program should print out the numbers one through ten.