+1 for having syntax for inclusive ranges in expressions, instead of using an adaptor a..b.inclusive() (which I think is too long for its own good, and people will tend to write a..b+1 even if it overflows the upper limit).
And a..=b looks good IMO, and it’s easy to distinguish it from a..b when reading code.